vfdecrypt: remove

upstream unmaintained, doesn't build with openssl 1.1 and no recent
changes in nixpkgs
This commit is contained in:
Robin Gloster 2019-07-29 23:00:02 +02:00
parent 81c88f5d29
commit bdfc0887de
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF
2 changed files with 0 additions and 28 deletions

View file

@ -1,26 +0,0 @@
{ stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
name = "vfdecrypt-${version}";
version = "unstable-2010-08-13";
src = fetchFromGitHub {
owner = "Tomer1510";
repo = "VFDecrypt";
rev = "4e2fa32816254907e82886b936afcae9859a876c";
sha256 = "0b945805f7f60bf48556c2db45c9ab26485fb05acbc6160a563d529b20cb56a3";
};
buildInputs = [ openssl ];
installPhase = ''
mkdir -p $out/bin
cp vfdecrypt $out/bin
'';
meta = with stdenv.lib; {
description = "A cross platform dmg decryption tool";
license = licenses.mit;
inherit (src.meta) homepage;
};
}

View file

@ -6628,8 +6628,6 @@ in
verilog = callPackage ../applications/science/electronics/verilog {};
vfdecrypt = callPackage ../tools/misc/vfdecrypt { };
video2midi = callPackage ../tools/audio/video2midi {
pythonPackages = python3Packages;
};