nixpkgs/pkgs/tools/misc/jdupes/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

2017-06-28 02:30:47 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "jdupes";
2019-08-01 15:32:08 +00:00
version = "1.13.2";
2017-06-28 02:30:47 +00:00
src = fetchFromGitHub {
owner = "jbruchon";
repo = "jdupes";
rev = "v${version}";
2019-08-01 15:32:08 +00:00
sha256 = "1dzw1h9x9addkxf7r8lb8y09wmdkx8i61f5m96589r88jjk965xy";
2017-06-28 02:30:47 +00:00
# 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";
2018-06-22 03:17:25 +00:00
enableParallelBuilding = true;
2018-07-23 08:51:53 +00:00
doCheck = false; # broken Makefile, the above also removes tests
2018-06-22 03:17:25 +00:00
postInstall = ''
install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README.md
2018-06-22 03:17:25 +00:00
'';
2017-06-28 02:30:47 +00:00
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;
2018-06-22 03:17:25 +00:00
maintainers = with maintainers; [ romildo ];
2017-06-28 02:30:47 +00:00
platforms = platforms.all;
};
}