3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #26920 from romildo/upd.fdupes

jdupes: init at 1.8
This commit is contained in:
Renaud 2017-11-14 21:04:49 +01:00 committed by GitHub
commit 2236363f9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -15294,6 +15294,8 @@ with pkgs;
japa = callPackage ../applications/audio/japa { };
jdupes = callPackage ../tools/misc/jdupes { };
jedit = callPackage ../applications/editors/jedit { };
jigdo = callPackage ../applications/misc/jigdo { };