Skip to content

Commit

Permalink
certdump: unstable-2023-07-12 -> 0-unstable-2023-12-25 (#352540)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillrdy authored Oct 31, 2024
2 parents 91d8cd7 + 774b5ea commit c0dbda8
Show file tree
Hide file tree
Showing 5 changed files with 165 additions and 76 deletions.
126 changes: 126 additions & 0 deletions pkgs/by-name/ce/certdump/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions pkgs/by-name/ce/certdump/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
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; };
};
}
46 changes: 0 additions & 46 deletions pkgs/tools/security/certdump/default.nix

This file was deleted.

28 changes: 0 additions & 28 deletions pkgs/tools/security/certdump/deps.nix

This file was deleted.

2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6542,8 +6542,6 @@ with pkgs;
code-browser-gtk2 = callPackage ../applications/editors/code-browser { withGtk2 = true; };
code-browser-gtk = callPackage ../applications/editors/code-browser { withGtk3 = true; };

certdump = callPackage ../tools/security/certdump { };

certstrap = callPackage ../tools/security/certstrap { };

cffconvert = python3Packages.toPythonApplication python3Packages.cffconvert;
Expand Down

0 comments on commit c0dbda8

Please sign in to comment.