depot/third_party/nixpkgs/pkgs/tools/security/scallion/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

36 lines
951 B
Nix

{ stdenv, fetchFromGitHub, makeWrapper, mono, openssl_1_0_2, ocl-icd }:
stdenv.mkDerivation rec {
version = "2.1";
pname = "scallion";
src = fetchFromGitHub {
owner = "lachesis";
repo = "scallion";
rev = "v${version}";
sha256 = "1l9aj101xpsaaa6kmmhmq68m6z8gzli1iaaf8xaxbivq0i7vka9k";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ mono ];
buildPhase = ''
xbuild scallion.sln
'';
installPhase = ''
mkdir -p $out/share
cp scallion/bin/Debug/* $out/share/
makeWrapper ${mono}/bin/mono $out/bin/scallion \
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ openssl_1_0_2 ocl-icd ]} \
--add-flags $out/share/scallion.exe
'';
meta = with stdenv.lib; {
description = "GPU-based tor hidden service name generator";
homepage = src.meta.homepage;
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ volth ];
};
}