nixpkgs/pkgs/tools/misc/vfdecrypt/default.nix

18 lines
430 B
Nix
Raw Normal View History

{ stdenv, fetchgit, openssl }:
stdenv.mkDerivation rec {
name = "vfdecrypt";
src = fetchgit {
2013-07-19 04:28:43 +00:00
url = git://github.com/drakealleg/VFDecrypt.git;
rev = "4e2fa32816254907e82886b936afcae9859a876c";
sha256 = "0b945805f7f60bf48556c2db45c9ab26485fb05acbc6160a563d529b20cb56a3";
};
2015-06-04 17:22:36 +00:00
buildInputs = [ openssl ];
broken = true; # No such repo
installPhase = ''
mkdir -p $out/bin
cp vfdecrypt $out/bin
'';
}