forked from mirrors/nixpkgs
gpgstats: init at 0.5
This commit is contained in:
parent
fac03e7441
commit
8fe43ba05a
30
pkgs/tools/security/gpgstats/default.nix
Normal file
30
pkgs/tools/security/gpgstats/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ stdenv, fetchurl, ncurses, gpgme }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "gpgstats-${version}";
|
||||||
|
version = "0.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.vanheusden.com/gpgstats/${name}.tgz";
|
||||||
|
sha256 = "1n3njqhjwgfllcxs0xmk89dzgirrpfpfzkj71kqyvq97gc1wbcxy";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ncurses gpgme ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp gpgstats $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Calculates statistics on the keys in your gpg key-ring";
|
||||||
|
longDescription = ''
|
||||||
|
GPGstats calculates statistics on the keys in your key-ring.
|
||||||
|
'';
|
||||||
|
homepage = http://www.vanheusden.com/gpgstats/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; davidak;
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -6422,6 +6422,8 @@ let
|
||||||
gnupg1 = gnupg1orig;
|
gnupg1 = gnupg1orig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gpgstats = callPackage ../tools/security/gpgstats { };
|
||||||
|
|
||||||
grantlee = callPackage ../development/libraries/grantlee { };
|
grantlee = callPackage ../development/libraries/grantlee { };
|
||||||
|
|
||||||
grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { };
|
grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { };
|
||||||
|
|
Loading…
Reference in a new issue