Skip to content

Commit

Permalink
rdfind: 1.3.4 -> 1.3.5
Browse files Browse the repository at this point in the history
homepage and fetch src over HTTPS
  • Loading branch information
c0bw3b authored and rycee committed Nov 1, 2017
1 parent f7dea27 commit a66f1d6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/tools/filesystems/rdfind/default.nix
Expand Up @@ -2,20 +2,20 @@

stdenv.mkDerivation rec {
name = "rdfind-${version}";
version = "1.3.4";
version = "1.3.5";

src = fetchurl {
url = "http://rdfind.pauldreik.se/${name}.tar.gz";
sha256 = "0zfc5whh6j5xfbxr6wvznk62qs1mkd3r7jcq72wjgnck43vv7w55";
url = "https://rdfind.pauldreik.se/${name}.tar.gz";
sha256 = "0i63f2lwwkiq5m8shi3wwi59i1s25r6dx6flsgqxs1jvlcg0lvn3";
};

buildInputs = [ nettle ];

meta = {
homepage = http://rdfind.pauldreik.se/;
meta = with stdenv.lib; {
homepage = https://rdfind.pauldreik.se/;
description = "Removes or hardlinks duplicate files very swiftly";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ wmertens ];
platforms = with stdenv.lib.platforms; all;
maintainers = [ maintainers.wmertens ];
platforms = platforms.all;
};
}

0 comments on commit a66f1d6

Please sign in to comment.