about summary refs log tree commit diff
path: root/pkgs/tools/misc/jdupes/default.nix
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2017-06-27 23:30:47 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2017-11-13 00:16:49 -0200
commita6b1d9a6a12cbd8b20197db2378c5b58d06252da (patch)
tree4f0e216ca83639124b56fe2d22d4df3359cf867f /pkgs/tools/misc/jdupes/default.nix
parent8e73afb2e13c3717044aea3de2ad6e7085caf589 (diff)
jdupes: init at 1.8
Diffstat (limited to 'pkgs/tools/misc/jdupes/default.nix')
-rw-r--r--pkgs/tools/misc/jdupes/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/misc/jdupes/default.nix b/pkgs/tools/misc/jdupes/default.nix
new file mode 100644
index 0000000000000..35d93a3d57cb0
--- /dev/null
+++ b/pkgs/tools/misc/jdupes/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "jdupes-${version}";
+  version = "1.8";
+
+  src = fetchFromGitHub {
+    owner = "jbruchon";
+    repo  = "jdupes";
+    rev   = "v${version}";
+    sha256 = "17cgh3j6z4rl8ay06s8387a2c49awfv1w3b2a11z4hidwry37aiq";
+    # Unicode file names lead to different checksums on HFS+ vs. other
+    # filesystems because of unicode normalisation. The testdir
+    # directories have such files and will be removed.
+    extraPostFetch = "rm -r $out/testdir";
+  };
+
+  makeFlags = [ "PREFIX=$(out)" ] ++ stdenv.lib.optional stdenv.isLinux "ENABLE_BTRFS=1";
+
+  meta = with stdenv.lib; {
+    description = "A powerful duplicate file finder and an enhanced fork of 'fdupes'";
+    longDescription = ''
+      jdupes is a program for identifying and taking actions upon
+      duplicate files. This fork known as 'jdupes' is heavily modified
+      from and improved over the original.
+    '';
+    homepage = https://github.com/jbruchon/jdupes;
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = [ maintainers.romildo ];
+  };
+}