2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-06-28 03:30:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "jdupes";
|
2021-03-25 10:25:19 +00:00
|
|
|
version = "1.19.2";
|
2017-06-28 03:30:47 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jbruchon";
|
|
|
|
repo = "jdupes";
|
|
|
|
rev = "v${version}";
|
2021-03-25 10:25:19 +00:00
|
|
|
sha256 = "sha256-3lWrSybYp3RrUnydosgsNkGQjrk7JvxuxjMslN4cGfk=";
|
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-05-13 03:18:00 +01:00
|
|
|
dontConfigure = true;
|
|
|
|
|
2020-01-14 16:57:24 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=${placeholder "out"}"
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2020-01-14 16:57:24 +00:00
|
|
|
"ENABLE_DEDUPE=1"
|
|
|
|
"STATIC_DEDUPE_H=1"
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optionals stdenv.cc.isGNU [
|
2020-08-04 08:25:48 +01:00
|
|
|
"HARDEN=1"
|
2020-01-14 16:57:24 +00:00
|
|
|
];
|
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 = ''
|
2020-05-13 03:18:00 +01:00
|
|
|
install -Dm444 -t $out/share/doc/jdupes CHANGES LICENSE README.md
|
2018-06-22 04:17:25 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-28 03:30:47 +01: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 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
|
|
|
};
|
|
|
|
}
|