mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
40 lines
960 B
Nix
40 lines
960 B
Nix
|
{
|
||
|
lib,
|
||
|
buildDotnetModule,
|
||
|
fetchFromGitHub,
|
||
|
stdenv,
|
||
|
}:
|
||
|
|
||
|
buildDotnetModule rec {
|
||
|
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.nix;
|
||
|
|
||
|
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 = builtins.attrValues { inherit (lib.maintainers) baloo; };
|
||
|
};
|
||
|
}
|