1{ stdenv, fetchgit, openssl }:
2
3stdenv.mkDerivation rec {
4 name = "vfdecrypt";
5
6 src = fetchgit {
7 url = git://github.com/drakealleg/VFDecrypt.git;
8 rev = "4e2fa32816254907e82886b936afcae9859a876c";
9 sha256 = "0b945805f7f60bf48556c2db45c9ab26485fb05acbc6160a563d529b20cb56a3";
10 };
11 buildInputs = [ openssl ];
12 broken = true; # No such repo
13 installPhase = ''
14 mkdir -p $out/bin
15 cp vfdecrypt $out/bin
16 '';
17}