mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
26 lines
650 B
Nix
26 lines
650 B
Nix
{ 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 ];
|
|
};
|
|
}
|