summary refs log tree commit diff
path: root/pkgs/tools/misc/vfdecrypt/default.nix
blob: de7ee27d7045258256f53997f13071a5abb23020 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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
  '';
}