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

46 lines
1.3 KiB
Nix
Raw Normal View History

2017-06-28 03:30:47 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "jdupes";
2020-01-14 16:57:24 +00:00
version = "1.14.0";
2017-06-28 03:30:47 +01:00
src = fetchFromGitHub {
owner = "jbruchon";
repo = "jdupes";
rev = "v${version}";
2020-01-14 16:57:24 +00:00
sha256 = "18hn25f7cdz1li0vvx74al7a8z2220xhzjp9j6idhldsmjnscgq8";
2017-06-28 03:30:47 +01: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";
};
2020-01-14 16:57:24 +00:00
makeFlags = [
"PREFIX=${placeholder "out"}"
] ++ stdenv.lib.optionals stdenv.isLinux [
"ENABLE_DEDUPE=1"
"STATIC_DEDUPE_H=1"
];
2017-06-28 03:30:47 +01:00
2018-06-22 04:17:25 +01:00
enableParallelBuilding = true;
2018-07-23 09:51:53 +01:00
doCheck = false; # broken Makefile, the above also removes tests
2018-06-22 04:17:25 +01:00
postInstall = ''
install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README.md
2018-06-22 04:17:25 +01:00
'';
2017-06-28 03:30:47 +01: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.
'';
2020-01-14 16:57:24 +00:00
homepage = "https://github.com/jbruchon/jdupes";
2017-06-28 03:30:47 +01:00
license = licenses.mit;
2018-06-22 04:17:25 +01:00
maintainers = with maintainers; [ romildo ];
2017-06-28 03:30:47 +01:00
platforms = platforms.all;
};
}