ddrutility: init at 2.8
This commit is contained in:
parent
1c1e32ba00
commit
6916565510
25
pkgs/tools/system/ddrutility/default.nix
Normal file
25
pkgs/tools/system/ddrutility/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1995,6 +1995,8 @@ with pkgs;
|
|||||||
|
|
||||||
ddrescueview = callPackage ../tools/system/ddrescueview { };
|
ddrescueview = callPackage ../tools/system/ddrescueview { };
|
||||||
|
|
||||||
|
ddrutility = callPackage ../tools/system/ddrutility { };
|
||||||
|
|
||||||
deluge = callPackage ../applications/networking/p2p/deluge {
|
deluge = callPackage ../applications/networking/p2p/deluge {
|
||||||
pythonPackages = python2Packages;
|
pythonPackages = python2Packages;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user