···7788stdenv.mkDerivation (finalAttrs: {
99 pname = "jdupes";
1010- version = "1.28.0";
1010+ version = "1.29.0";
11111212 src = fetchFromGitea {
1313 domain = "codeberg.org";
1414 owner = "jbruchon";
1515 repo = "jdupes";
1616 rev = "v${finalAttrs.version}";
1717- hash = "sha256-jRjVuN/FNDpKB+Ibi+Mkm+WhB16cz9c33dOOeiPdgr8=";
1717+ hash = "sha256-ddl1GCA96j5H6C9KTtJudQ4wSUeOGA6p4P8JPbsVr9o=";
1818 # Unicode file names lead to different checksums on HFS+ vs. other
1919 # filesystems because of unicode normalisation. The testdir
2020 # directories have such files and will be removed.
···27272828 makeFlags = [
2929 "PREFIX=${placeholder "out"}"
3030+ # don't link with ../libjodycode
3131+ "IGNORE_NEARBY_JC=1"
3232+ # link with system libjodycode (this case is erroneously missing in v1.29.0)
3333+ "LDFLAGS_EXTRA=-ljodycode"
3034 ]
3135 ++ lib.optionals stdenv.hostPlatform.isLinux [
3236 "ENABLE_DEDUPE=1"