jdupes: 1.9 -> 1.10.2

This commit is contained in:
Peter Hoeg 2018-06-22 11:17:25 +08:00
parent 9185df5f9d
commit 2cee0c41e4

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "jdupes-${version}"; name = "jdupes-${version}";
version = "1.9"; version = "1.10.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jbruchon"; owner = "jbruchon";
repo = "jdupes"; repo = "jdupes";
rev = "v${version}"; rev = "v${version}";
sha256 = "0z6hb4jva0pnk5fb1p59qwyglgrpxgpnz4djq3g00y5yxv3sj9z9"; sha256 = "0msp68h1gaipwpvdylpwd6w9al5gcmawj9cmvi7nw8ihh184g3m7";
# 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.
@ -17,6 +17,13 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(out)" ] ++ stdenv.lib.optional stdenv.isLinux "ENABLE_BTRFS=1"; makeFlags = [ "PREFIX=$(out)" ] ++ stdenv.lib.optional stdenv.isLinux "ENABLE_BTRFS=1";
enableParallelBuilding = true;
postInstall = ''
install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A powerful duplicate file finder and an enhanced fork of 'fdupes'"; description = "A powerful duplicate file finder and an enhanced fork of 'fdupes'";
longDescription = '' longDescription = ''
@ -26,7 +33,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = https://github.com/jbruchon/jdupes; homepage = https://github.com/jbruchon/jdupes;
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ romildo ];
platforms = platforms.all; platforms = platforms.all;
maintainers = [ maintainers.romildo ];
}; };
} }