forked from mirrors/nixpkgs
eschalot: init at 2018-01-19 (#34773)
This commit is contained in:
parent
2bffc88a51
commit
eaf55b1946
28
pkgs/tools/security/eschalot/default.nix
Normal file
28
pkgs/tools/security/eschalot/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "eschalot";
|
||||
version = "2018-01-19";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ReclaimYourPrivacy";
|
||||
repo = pname;
|
||||
rev = "56a967b62631cfd3c7ef68541263dbd54cbbc2c4";
|
||||
sha256 = "1iw1jrydasm9dmgpcdimd8dy9n281ys9krvf3fd3dlymkgsj604d";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
installPhase = ''
|
||||
install -D -t $out/bin eschalot worgen
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tor hidden service name generator";
|
||||
homepage = src.meta.homepage;
|
||||
license = licenses.isc;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -1103,6 +1103,8 @@ with pkgs;
|
|||
|
||||
envconsul = callPackage ../tools/system/envconsul { };
|
||||
|
||||
eschalot = callPackage ../tools/security/eschalot { };
|
||||
|
||||
esptool = callPackage ../tools/misc/esptool { };
|
||||
|
||||
esptool-ck = callPackage ../tools/misc/esptool-ck { };
|
||||
|
|
Loading…
Reference in a new issue