silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / jd / jdupes / package.nix
blob6a4b5c3c393cac02dd64411f9063b2c510aa96b0
2   lib,
3   stdenv,
4   fetchFromGitea,
5   libjodycode,
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "jdupes";
10   version = "1.28.0";
12   src = fetchFromGitea {
13     domain = "codeberg.org";
14     owner = "jbruchon";
15     repo = "jdupes";
16     rev = "v${finalAttrs.version}";
17     hash = "sha256-jRjVuN/FNDpKB+Ibi+Mkm+WhB16cz9c33dOOeiPdgr8=";
18     # Unicode file names lead to different checksums on HFS+ vs. other
19     # filesystems because of unicode normalisation. The testdir
20     # directories have such files and will be removed.
21     postFetch = "rm -r $out/testdir";
22   };
24   buildInputs = [ libjodycode ];
26   dontConfigure = true;
28   makeFlags =
29     [ "PREFIX=${placeholder "out"}" ]
30     ++ lib.optionals stdenv.hostPlatform.isLinux [
31       "ENABLE_DEDUPE=1"
32       "STATIC_DEDUPE_H=1"
33     ]
34     ++ lib.optionals stdenv.cc.isGNU [ "HARDEN=1" ];
36   enableParallelBuilding = true;
38   doCheck = false; # broken Makefile, the above also removes tests
40   postInstall = ''
41     install -Dm444 -t $out/share/doc/jdupes CHANGES.txt LICENSE.txt README.md
42   '';
44   meta = {
45     description = "Powerful duplicate file finder and an enhanced fork of 'fdupes'";
46     longDescription = ''
47       jdupes is a program for identifying and taking actions upon
48       duplicate files. This fork known as 'jdupes' is heavily modified
49       from and improved over the original.
50     '';
51     homepage = "https://codeberg.org/jbruchon/jdupes";
52     license = lib.licenses.mit;
53     maintainers = [ ];
54     mainProgram = "jdupes";
55   };