Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

dd_rescue: add license + update homepage

+4 -3
+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 - --replace "-g root" "" 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 + 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 - downloadPage = "http://www.garloff.de/kurt/linux/ddrescue/"; 37 + homepage = "http://www.garloff.de/kurt/linux/ddrescue/"; 38 + license = licenses.gpl2Plus; 38 39 inherit version; 39 40 updateWalker = true; 40 41 };