2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-06-27 19:30:47 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "jdupes";
|
2021-05-13 05:07:36 -07:00
|
|
|
version = "1.20.0";
|
2017-06-27 19:30:47 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jbruchon";
|
|
|
|
repo = "jdupes";
|
|
|
|
rev = "v${version}";
|
2021-05-13 05:07:36 -07:00
|
|
|
sha256 = "sha256-G6ixqSIdDoM/OVlPfv2bI4MA/k0x3Jic/kFo5XEsN/M=";
|
2017-06-27 19:30:47 -07: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-05-12 19:18:00 -07:00
|
|
|
dontConfigure = true;
|
|
|
|
|
2020-01-14 08:57:24 -08:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=${placeholder "out"}"
|
2021-01-15 01:19:50 -08:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2020-01-14 08:57:24 -08:00
|
|
|
"ENABLE_DEDUPE=1"
|
|
|
|
"STATIC_DEDUPE_H=1"
|
2021-01-15 01:19:50 -08:00
|
|
|
] ++ lib.optionals stdenv.cc.isGNU [
|
2020-08-04 00:25:48 -07:00
|
|
|
"HARDEN=1"
|
2020-01-14 08:57:24 -08:00
|
|
|
];
|
2017-06-27 19:30:47 -07:00
|
|
|
|
2018-06-21 20:17:25 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-07-23 01:51:53 -07:00
|
|
|
doCheck = false; # broken Makefile, the above also removes tests
|
|
|
|
|
2018-06-21 20:17:25 -07:00
|
|
|
postInstall = ''
|
2020-05-12 19:18:00 -07:00
|
|
|
install -Dm444 -t $out/share/doc/jdupes CHANGES LICENSE README.md
|
2018-06-21 20:17:25 -07:00
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-06-27 19:30:47 -07:00
|
|
|
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 08:57:24 -08:00
|
|
|
homepage = "https://github.com/jbruchon/jdupes";
|
2017-06-27 19:30:47 -07:00
|
|
|
license = licenses.mit;
|
2018-06-21 20:17:25 -07:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2017-06-27 19:30:47 -07:00
|
|
|
};
|
|
|
|
}
|