Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
780 B
Nix
36 lines
780 B
Nix
{
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
openal,
|
|
dotnetCorePackages,
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "knossosnet";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KnossosNET";
|
|
repo = "Knossos.NET";
|
|
rev = "v${version}";
|
|
hash = "sha256-XaCBuZ4Hf2ISw3hVQ1s2Hp8PLxp2eFr+I7U5ttUDQvU=";
|
|
};
|
|
|
|
patches = [ ./dotnet-8-upgrade.patch ];
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
|
nugetDeps = ./deps.json;
|
|
executables = [ "Knossos.NET" ];
|
|
|
|
runtimeDeps = [ openal ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/KnossosNET/Knossos.NET";
|
|
description = "Multi-platform launcher for Freespace 2 Open";
|
|
license = licenses.gpl3Only;
|
|
mainProgram = "Knossos.NET";
|
|
maintainers = with maintainers; [ cdombroski ];
|
|
};
|
|
}
|