nixpkgs-immich/pkgs/tools/misc/jdupes/default.nix
2024-09-17 10:23:40 -06:00

53 lines
1.4 KiB
Nix

{ lib, stdenv, fetchFromGitea, libjodycode }:
stdenv.mkDerivation rec {
pname = "jdupes";
version = "1.27.3";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "jbruchon";
repo = "jdupes";
rev = "v${version}";
hash = "sha256-hR5nl8G7TYVm4ol/jgo7iOb4dLr2MovgjKSXCD2UwMg=";
# 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.
postFetch = "rm -r $out/testdir";
};
buildInputs = [ libjodycode ];
dontConfigure = true;
makeFlags = [
"PREFIX=${placeholder "out"}"
] ++ lib.optionals stdenv.isLinux [
"ENABLE_DEDUPE=1"
"STATIC_DEDUPE_H=1"
] ++ lib.optionals stdenv.cc.isGNU [
"HARDEN=1"
];
enableParallelBuilding = true;
doCheck = false; # broken Makefile, the above also removes tests
postInstall = ''
install -Dm444 -t $out/share/doc/jdupes CHANGES.txt LICENSE.txt README.md
'';
meta = with lib; {
description = "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;
maintainers = [ ];
mainProgram = "jdupes";
};
}