Merge pull request #10189 from davidak/nasty

nasty: init at 0.6
This commit is contained in:
Arseniy Seroka 2015-10-11 22:57:31 +03:00
commit 299b8ba222
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl, gpgme }:
stdenv.mkDerivation rec {
name = "nasty-${version}";
version = "0.6";
src = fetchurl {
url = "http://www.vanheusden.com/nasty/${name}.tgz";
sha256 = "1dznlxr728k1pgy1kwmlm7ivyl3j3rlvkmq34qpwbwbj8rnja1vn";
};
buildInputs = [ gpgme ];
installPhase = ''
mkdir -p $out/bin
cp nasty $out/bin
'';
meta = with stdenv.lib; {
description = "Recover the passphrase of your PGP or GPG-key";
longDescription = ''
Nasty is a program that helps you to recover the passphrase of your PGP or GPG-key
in case you forget or lost it. It is mostly a proof-of-concept: with a different implementation
this program could be at least 100x faster.
'';
homepage = http://www.vanheusden.com/nasty/;
license = licenses.gpl2;
maintainers = with maintainers; davidak;
platforms = with platforms; unix;
};
}

View file

@ -2295,6 +2295,8 @@ let
namazu = callPackage ../tools/text/namazu { };
nasty = callPackage ../tools/security/nasty { };
nbd = callPackage ../tools/networking/nbd { };
ndjbdns = callPackage ../tools/networking/ndjbdns { };