Files
nixpkgs/pkgs/by-name/ce/certdump/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

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;
};
}