mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
commit
299b8ba222
32
pkgs/tools/security/nasty/default.nix
Normal file
32
pkgs/tools/security/nasty/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -2295,6 +2295,8 @@ let
|
|||||||
|
|
||||||
namazu = callPackage ../tools/text/namazu { };
|
namazu = callPackage ../tools/text/namazu { };
|
||||||
|
|
||||||
|
nasty = callPackage ../tools/security/nasty { };
|
||||||
|
|
||||||
nbd = callPackage ../tools/networking/nbd { };
|
nbd = callPackage ../tools/networking/nbd { };
|
||||||
|
|
||||||
ndjbdns = callPackage ../tools/networking/ndjbdns { };
|
ndjbdns = callPackage ../tools/networking/ndjbdns { };
|
||||||
|
Loading…
Reference in New Issue
Block a user