summary refs log tree commit diff
path: root/pkgs/tools/filesystems/rdfind
diff options
context:
space:
mode:
authorWout Mertens <Wout.Mertens@gmail.com>2015-02-14 23:01:54 +0100
committerWout Mertens <Wout.Mertens@gmail.com>2015-02-14 23:19:46 +0100
commitf80ae41a7d9110e8a4bb339eee33c8b47148d4ac (patch)
treebf21f0d89d8881206b16e9de91b494680c0fda29 /pkgs/tools/filesystems/rdfind
parent34413a142b3d6e75cb320ef256533728a45123d2 (diff)
downloadnixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.tar
nixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.tar.gz
nixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.tar.bz2
nixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.tar.lz
nixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.tar.xz
nixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.tar.zst
nixpkgs-f80ae41a7d9110e8a4bb339eee33c8b47148d4ac.zip
rdfind: Add new package
refined is a very fast duplicate file finder/remover/hardlinker.
Diffstat (limited to 'pkgs/tools/filesystems/rdfind')
-rw-r--r--pkgs/tools/filesystems/rdfind/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/rdfind/default.nix b/pkgs/tools/filesystems/rdfind/default.nix
new file mode 100644
index 00000000000..5106af48917
--- /dev/null
+++ b/pkgs/tools/filesystems/rdfind/default.nix
@@ -0,0 +1,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;
+  };
+}