slight changes

This commit is contained in:
Henry Hiles 2025-06-19 17:33:50 -04:00
commit 680d7fcd05
No known key found for this signature in database
9 changed files with 136 additions and 54 deletions

View file

@ -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];
};
};
};
};
}