some reorganizing
This commit is contained in:
parent
df9e8ae8bf
commit
113e015135
182 changed files with 443 additions and 449 deletions
27
sys/profiles/programs/RE/ilspy/default.nix
Normal file
27
sys/profiles/programs/RE/ilspy/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
buildDotnetModule,
|
||||
dotnetCorePackages,
|
||||
fetchFromGitHub,
|
||||
powershell,
|
||||
}:
|
||||
buildDotnetModule rec {
|
||||
pname = "ilspy";
|
||||
version = "9.0-preview2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "icsharpcode";
|
||||
repo = "ILSpy";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-JaFyKq5ZyHLvodY2/Ybwb/FmDeWQ5BawmA1ss+Qry20=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
powershell
|
||||
];
|
||||
|
||||
projectFile = "ICSharpCode.ILSpyCmd/ICSharpCode.ILSpyCmd.csproj";
|
||||
|
||||
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
||||
dotnet-runtime = dotnetCorePackages.runtime_8_0;
|
||||
|
||||
nugetDeps = ./deps.nix;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue