17 lines
396 B
Nix
17 lines
396 B
Nix
{ stdenv, fetchgit, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vfdecrypt";
|
|
|
|
src = fetchgit {
|
|
url = git://github.com/drakealleg/VFDecrypt.git;
|
|
rev = "4e2fa32816254907e82886b936afcae9859a876c";
|
|
sha256 = "0b945805f7f60bf48556c2db45c9ab26485fb05acbc6160a563d529b20cb56a3";
|
|
};
|
|
buildInputs = [openssl];
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp vfdecrypt $out/bin
|
|
'';
|
|
}
|