rdfind: 1.3.4 -> 1.3.5

homepage and fetch src over HTTPS

authored by Renaud and committed by Robert Helgesson a66f1d60 f7dea271

+7 -7
+7 -7
pkgs/tools/filesystems/rdfind/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "rdfind-${version}"; 5 - version = "1.3.4"; 6 7 src = fetchurl { 8 - url = "http://rdfind.pauldreik.se/${name}.tar.gz"; 9 - sha256 = "0zfc5whh6j5xfbxr6wvznk62qs1mkd3r7jcq72wjgnck43vv7w55"; 10 }; 11 12 buildInputs = [ nettle ]; 13 14 - meta = { 15 - homepage = http://rdfind.pauldreik.se/; 16 description = "Removes or hardlinks duplicate files very swiftly"; 17 license = stdenv.lib.licenses.gpl2; 18 - maintainers = with stdenv.lib.maintainers; [ wmertens ]; 19 - platforms = with stdenv.lib.platforms; all; 20 }; 21 }
··· 2 3 stdenv.mkDerivation rec { 4 name = "rdfind-${version}"; 5 + version = "1.3.5"; 6 7 src = fetchurl { 8 + url = "https://rdfind.pauldreik.se/${name}.tar.gz"; 9 + sha256 = "0i63f2lwwkiq5m8shi3wwi59i1s25r6dx6flsgqxs1jvlcg0lvn3"; 10 }; 11 12 buildInputs = [ nettle ]; 13 14 + meta = with stdenv.lib; { 15 + homepage = https://rdfind.pauldreik.se/; 16 description = "Removes or hardlinks duplicate files very swiftly"; 17 license = stdenv.lib.licenses.gpl2; 18 + maintainers = [ maintainers.wmertens ]; 19 + platforms = platforms.all; 20 }; 21 }