jdupes: 1.13.2 -> 1.14.0

This commit is contained in:
Renaud 2020-01-14 17:57:24 +01:00 committed by Alyssa Ross
parent 8008905e5a
commit 404d9529e1

View File

@ -2,20 +2,25 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "jdupes"; pname = "jdupes";
version = "1.13.2"; version = "1.14.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jbruchon"; owner = "jbruchon";
repo = "jdupes"; repo = "jdupes";
rev = "v${version}"; rev = "v${version}";
sha256 = "1dzw1h9x9addkxf7r8lb8y09wmdkx8i61f5m96589r88jjk965xy"; sha256 = "18hn25f7cdz1li0vvx74al7a8z2220xhzjp9j6idhldsmjnscgq8";
# Unicode file names lead to different checksums on HFS+ vs. other # Unicode file names lead to different checksums on HFS+ vs. other
# filesystems because of unicode normalisation. The testdir # filesystems because of unicode normalisation. The testdir
# directories have such files and will be removed. # directories have such files and will be removed.
extraPostFetch = "rm -r $out/testdir"; extraPostFetch = "rm -r $out/testdir";
}; };
makeFlags = [ "PREFIX=$(out)" ] ++ stdenv.lib.optional stdenv.isLinux "ENABLE_BTRFS=1"; makeFlags = [
"PREFIX=${placeholder "out"}"
] ++ stdenv.lib.optionals stdenv.isLinux [
"ENABLE_DEDUPE=1"
"STATIC_DEDUPE_H=1"
];
enableParallelBuilding = true; enableParallelBuilding = true;
@ -32,7 +37,7 @@ stdenv.mkDerivation rec {
duplicate files. This fork known as 'jdupes' is heavily modified duplicate files. This fork known as 'jdupes' is heavily modified
from and improved over the original. from and improved over the original.
''; '';
homepage = https://github.com/jbruchon/jdupes; homepage = "https://github.com/jbruchon/jdupes";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ romildo ]; maintainers = with maintainers; [ romildo ];
platforms = platforms.all; platforms = platforms.all;