tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
dd_rescue: add license + update homepage
Markus Kowalewski
7 years ago
7d25ffad
d9416449
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
system
dd_rescue
default.nix
+4
-3
pkgs/tools/system/dd_rescue/default.nix
···
20
20
substituteInPlace Makefile \
21
21
--replace "\$(DESTDIR)/usr" "$out" \
22
22
--replace "-o root" "" \
23
23
-
--replace "-g root" ""
23
23
+
--replace "-g root" ""
24
24
'';
25
25
makeFlags = [ "LIBDIR=$out" ];
26
26
···
29
29
tar xf "${dd_rhelp_src}" -C "$out/share/dd_rescue"
30
30
cp "$out/share/dd_rescue"/dd_rhelp*/dd_rhelp "$out/bin"
31
31
'';
32
32
-
32
32
+
33
33
meta = with stdenv.lib; {
34
34
description = "A tool to copy data from a damaged block device";
35
35
maintainers = with maintainers; [ raskin domenkozar ];
36
36
platforms = platforms.linux;
37
37
-
downloadPage = "http://www.garloff.de/kurt/linux/ddrescue/";
37
37
+
homepage = "http://www.garloff.de/kurt/linux/ddrescue/";
38
38
+
license = licenses.gpl2Plus;
38
39
inherit version;
39
40
updateWalker = true;
40
41
};