slight changes
This commit is contained in:
parent
61ded00870
commit
680d7fcd05
9 changed files with 136 additions and 54 deletions
18
flake.nix
18
flake.nix
|
@ -13,6 +13,7 @@
|
|||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = ["x86_64-linux" "aarch64-linux"];
|
||||
perSystem = {
|
||||
lib,
|
||||
pkgs,
|
||||
system,
|
||||
...
|
||||
|
@ -22,6 +23,23 @@
|
|||
devShells.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [just dart oauth2c watchexec];
|
||||
};
|
||||
|
||||
packages.default = pkgs.buildDartApplication {
|
||||
pname = "matrixoidc";
|
||||
version = "1.0.0";
|
||||
src = ./.;
|
||||
|
||||
dartConfigHook = "packageRun build_runner build";
|
||||
autoPubspecLock = ./pubspec.lock;
|
||||
|
||||
meta = {
|
||||
homepage = "https://git.federated.nexus/Henry-Hiles/matrixoidc";
|
||||
description = "An attempt to make an OIDC provider that authenticates with matrix OAuth.";
|
||||
mainProgram = "matrixoidc";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = [lib.maintainers.quadradical];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue