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

49 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2017-06-28 02:30:47 +00:00
stdenv.mkDerivation rec {
pname = "jdupes";
2021-05-13 12:07:36 +00:00
version = "1.20.0";
2017-06-28 02:30:47 +00:00
src = fetchFromGitHub {
owner = "jbruchon";
repo = "jdupes";
rev = "v${version}";
2021-05-13 12:07:36 +00:00
sha256 = "sha256-G6ixqSIdDoM/OVlPfv2bI4MA/k0x3Jic/kFo5XEsN/M=";
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";
};
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 [
"HARDEN=1"
2020-01-14 16:57:24 +00:00
];
2017-06-28 02:30:47 +00:00
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 -Dm444 -t $out/share/doc/jdupes CHANGES LICENSE README.md
2018-06-22 03:17:25 +00:00
'';
meta = with lib; {
2017-06-28 02:30:47 +00: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 02:30:47 +00:00
license = licenses.mit;
2018-06-22 03:17:25 +00:00
maintainers = with maintainers; [ romildo ];
2017-06-28 02:30:47 +00:00
};
}