summary refs log tree commit diff
path: root/pkgs/tools/filesystems/rdfind/default.nix
blob: 5106af4891779e02f8f79f05d77ffbdcbebc388c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, nettle }:

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

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

  buildInputs = [ nettle ];

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