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
41 lines
1002 B
Nix
41 lines
1002 B
Nix
{
|
|
lib,
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
}:
|
|
|
|
buildDotnetModule {
|
|
pname = "certdump";
|
|
version = "0-unstable-2023-12-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "secana";
|
|
repo = "CertDump";
|
|
rev = "a834da24ee18503109631d836540a2b0cb481517";
|
|
hash = "sha256-86s6KLP0DliKOr0fVId7SGN333b7HkiL5p/q0vazwMc=";
|
|
};
|
|
|
|
projectFile = [ "CertDump.sln" ];
|
|
nugetDeps = ./deps.json;
|
|
|
|
selfContainedBuild = true;
|
|
executables = [ "CertDump" ];
|
|
|
|
dotnetFlags = [
|
|
"-property:ImportByWildcardBeforeSolution=false"
|
|
];
|
|
|
|
meta = {
|
|
description = "Dump certificates from PE files in different formats";
|
|
mainProgram = "CertDump";
|
|
homepage = "https://github.com/secana/CertDump";
|
|
longDescription = ''
|
|
Cross-Platform tool to dump the signing certificate from a Portable Executable (PE) file.
|
|
'';
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.baloo ];
|
|
broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|