lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ddrutility: init at 2.8

+27
+25
pkgs/tools/system/ddrutility/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ddrutility-${version}"; 5 + version = "2.8"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/ddrutility/${name}.tar.gz"; 9 + sha256 = "023g7f2sfv5cqk3iyss4awrw3b913sy5423mn5zvlyrri5hi2cac"; 10 + }; 11 + 12 + postPatch = '' 13 + substituteInPlace makefile --replace /usr/local "" 14 + ''; 15 + 16 + makeFlags = [ "DESTDIR=$(out)" ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "A set of utilities for hard drive data rescue"; 20 + homepage = https://sourceforge.net/projects/ddrutility/; 21 + license = licenses.gpl2Plus; 22 + platforms = platforms.linux; 23 + maintainers = with maintainers; [ orivej ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 1995 1995 1996 1996 ddrescueview = callPackage ../tools/system/ddrescueview { }; 1997 1997 1998 + ddrutility = callPackage ../tools/system/ddrutility { }; 1999 + 1998 2000 deluge = callPackage ../applications/networking/p2p/deluge { 1999 2001 pythonPackages = python2Packages; 2000 2002 };