jdupes: 1.28.0 -> 1.29.0

Diff: https://codeberg.org/jbruchon/jdupes/compare/v1.28.0...v1.29.0
Release: https://codeberg.org/jbruchon/jdupes/releases/tag/v1.29.0
Changelog: https://codeberg.org/jbruchon/jdupes/src/branch/master/CHANGES.txt

+6 -2
+6 -2
pkgs/by-name/jd/jdupes/package.nix
··· 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "jdupes"; 10 - version = "1.28.0"; 11 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. ··· 27 28 makeFlags = [ 29 "PREFIX=${placeholder "out"}" 30 ] 31 ++ lib.optionals stdenv.hostPlatform.isLinux [ 32 "ENABLE_DEDUPE=1"
··· 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "jdupes"; 10 + version = "1.29.0"; 11 12 src = fetchFromGitea { 13 domain = "codeberg.org"; 14 owner = "jbruchon"; 15 repo = "jdupes"; 16 rev = "v${finalAttrs.version}"; 17 + hash = "sha256-ddl1GCA96j5H6C9KTtJudQ4wSUeOGA6p4P8JPbsVr9o="; 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. ··· 27 28 makeFlags = [ 29 "PREFIX=${placeholder "out"}" 30 + # don't link with ../libjodycode 31 + "IGNORE_NEARBY_JC=1" 32 + # link with system libjodycode (this case is erroneously missing in v1.29.0) 33 + "LDFLAGS_EXTRA=-ljodycode" 34 ] 35 ++ lib.optionals stdenv.hostPlatform.isLinux [ 36 "ENABLE_DEDUPE=1"