ddrutility: init at 2.8

This commit is contained in:
Orivej Desh 2018-06-20 05:57:08 +00:00
parent 1c1e32ba00
commit 6916565510
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "ddrutility-${version}";
version = "2.8";
src = fetchurl {
url = "mirror://sourceforge/ddrutility/${name}.tar.gz";
sha256 = "023g7f2sfv5cqk3iyss4awrw3b913sy5423mn5zvlyrri5hi2cac";
};
postPatch = ''
substituteInPlace makefile --replace /usr/local ""
'';
makeFlags = [ "DESTDIR=$(out)" ];
meta = with stdenv.lib; {
description = "A set of utilities for hard drive data rescue";
homepage = https://sourceforge.net/projects/ddrutility/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}

View file

@ -1995,6 +1995,8 @@ with pkgs;
ddrescueview = callPackage ../tools/system/ddrescueview { };
ddrutility = callPackage ../tools/system/ddrutility { };
deluge = callPackage ../applications/networking/p2p/deluge {
pythonPackages = python2Packages;
};