Skip to content

Commit a66f1d6

Browse files
c0bw3brycee
authored andcommittedNov 1, 2017
rdfind: 1.3.4 -> 1.3.5
homepage and fetch src over HTTPS
1 parent f7dea27 commit a66f1d6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎pkgs/tools/filesystems/rdfind/default.nix

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
stdenv.mkDerivation rec {
44
name = "rdfind-${version}";
5-
version = "1.3.4";
5+
version = "1.3.5";
66

77
src = fetchurl {
8-
url = "http://rdfind.pauldreik.se/${name}.tar.gz";
9-
sha256 = "0zfc5whh6j5xfbxr6wvznk62qs1mkd3r7jcq72wjgnck43vv7w55";
8+
url = "https://rdfind.pauldreik.se/${name}.tar.gz";
9+
sha256 = "0i63f2lwwkiq5m8shi3wwi59i1s25r6dx6flsgqxs1jvlcg0lvn3";
1010
};
1111

1212
buildInputs = [ nettle ];
1313

14-
meta = {
15-
homepage = http://rdfind.pauldreik.se/;
14+
meta = with stdenv.lib; {
15+
homepage = https://rdfind.pauldreik.se/;
1616
description = "Removes or hardlinks duplicate files very swiftly";
1717
license = stdenv.lib.licenses.gpl2;
18-
maintainers = with stdenv.lib.maintainers; [ wmertens ];
19-
platforms = with stdenv.lib.platforms; all;
18+
maintainers = [ maintainers.wmertens ];
19+
platforms = platforms.all;
2020
};
2121
}

0 commit comments

Comments
 (0)
Please sign in to comment.