Files
nixpkgs/pkgs/by-name/wi/wiseunpacker/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
894 B
Nix

{
fetchFromGitHub,
buildDotnetModule,
dotnetCorePackages,
lib,
}:
let
version = "1.3.3";
pname = "WiseUnpacker";
in
buildDotnetModule {
inherit version pname;
src = fetchFromGitHub {
owner = "mnadareski";
repo = "WiseUnpacker";
rev = version;
hash = "sha256-APbfo2D/p733AwNNByu5MvC9LA8WW4mAzq6t2w/YNrs=";
};
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;
dotnetFlags = [ "-p:TargetFramework=net8.0" ];
# Rename to something sensible
postFixup = ''
mv "$out/bin/Test" "$out/bin/WiseUnpacker"
'';
nugetDeps = ./deps.json;
projectFile = "Test/Test.csproj";
meta = with lib; {
homepage = "https://github.com/mnadareski/WiseUnpacker/";
description = "C# Wise installer unpacker based on HWUN and E_WISE ";
maintainers = [ maintainers.gigahawk ];
license = licenses.mit;
};
}