depot/third_party/nixpkgs/pkgs/tools/security/eschalot/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

27 lines
654 B
Nix

{ lib, stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
pname = "eschalot";
version = "2018-01-19";
src = fetchFromGitHub {
owner = "ReclaimYourPrivacy";
repo = pname;
rev = "56a967b62631cfd3c7ef68541263dbd54cbbc2c4";
sha256 = "1iw1jrydasm9dmgpcdimd8dy9n281ys9krvf3fd3dlymkgsj604d";
};
buildInputs = [ openssl ];
installPhase = ''
install -D -t $out/bin eschalot worgen
'';
meta = with lib; {
description = "Tor hidden service name generator";
homepage = src.meta.homepage;
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ dotlambda ];
};
}