nixpkgs/pkgs/tools/security/nasty/default.nix

37 lines
1.0 KiB
Nix
Raw Normal View History

2015-10-02 19:39:16 +00:00
{ stdenv, fetchurl, gpgme }:
stdenv.mkDerivation rec {
name = "nasty-${version}";
version = "0.6";
src = fetchurl {
url = "http://www.vanheusden.com/nasty/${name}.tgz";
sha256 = "1dznlxr728k1pgy1kwmlm7ivyl3j3rlvkmq34qpwbwbj8rnja1vn";
};
# does not apply cleanly with patchPhase/fetchpatch
# https://sources.debian.net/src/nasty/0.6-3/debian/patches/02_add_largefile_support.patch
CFLAGS = "-D_FILE_OFFSET_BITS=64";
2015-10-02 19:39:16 +00:00
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;
2015-10-11 20:00:47 +00:00
maintainers = with maintainers; [ davidak ];
platforms = platforms.unix;
2015-10-02 19:39:16 +00:00
};
}