certdump: fixup review comments

Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
This commit is contained in:
Arthur Gautier 2023-08-11 20:58:50 +00:00
parent 554f83f240
commit 438d05615d
3 changed files with 2 additions and 4 deletions

View file

@ -6,8 +6,7 @@
}: }:
buildDotnetModule rec { buildDotnetModule rec {
pname = "CertDump"; pname = "certdump";
version = "unstable-2023-07-12"; version = "unstable-2023-07-12";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -40,6 +39,5 @@ buildDotnetModule rec {
''; '';
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.baloo ]; maintainers = [ maintainers.baloo ];
platforms = with platforms; (linux ++ darwin);
}; };
} }

View file

@ -6956,7 +6956,7 @@ with pkgs;
code-browser-gtk2 = callPackage ../applications/editors/code-browser { withGtk2 = true; }; code-browser-gtk2 = callPackage ../applications/editors/code-browser { withGtk2 = true; };
code-browser-gtk = callPackage ../applications/editors/code-browser { withGtk3 = true; }; code-browser-gtk = callPackage ../applications/editors/code-browser { withGtk3 = true; };
CertDump = callPackage ../tools/security/CertDump { }; certdump = callPackage ../tools/security/certdump { };
certstrap = callPackage ../tools/security/certstrap { }; certstrap = callPackage ../tools/security/certstrap { };