diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..851a880 --- /dev/null +++ b/flake.nix @@ -0,0 +1,28 @@ +{ + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + #inputs.nixpkgs.url = "path:/home/root@Rory/git/Matrix/MatrixRoomUtils/nixpkgs"; + inputs.flake-utils.url = "github:numtide/flake-utils"; + + outputs = { self, nixpkgs, flake-utils }: + let + pkgs = nixpkgs.legacyPackages.x86_64-linux; + in + { + packages.x86_64-linux = { + default = pkgs.buildDotnetModule rec { + pname = "OsuFederatedBeatmapApi-v${version}"; + version = "1"; + dotnet-sdk = pkgs.dotnet-sdk_7; + dotnet-runtime = pkgs.dotnet-aspnetcore_7; + src = ./.; + projectFile = [ + "OsuFederatedBeatmapApi/OsuFederatedBeatmapApi.csproj" + ]; + nugetDeps = OsuFederatedBeatmapApi/deps.nix; + #nativeBuildInputs = with pkgs; [ + # pkg-config + #]; + }; + }; + }; +} |