jdupes: 1.12 -> 1.13

https://github.com/jbruchon/jdupes/releases/tag/v1.13
This commit is contained in:
Will Dietz 2019-06-04 03:52:51 -05:00
parent 984120f4c9
commit 5cb9d4d62e
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "jdupes-${version}";
version = "1.12";
version = "1.13";
src = fetchFromGitHub {
owner = "jbruchon";
repo = "jdupes";
rev = "v${version}";
sha256 = "1m5506scjbf2820p7mbsdsb2acg9jm74sb1604m9iz8v3dcn9dm6";
sha256 = "1apqc4ylx6jmpkaypi8323063g5685kl8nbjna2291lzf2pc4r9f";
# Unicode file names lead to different checksums on HFS+ vs. other
# filesystems because of unicode normalisation. The testdir
# directories have such files and will be removed.
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
doCheck = false; # broken Makefile, the above also removes tests
postInstall = ''
install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README
install -Dm644 -t $out/share/doc/jdupes CHANGES LICENSE README.md
'';
meta = with stdenv.lib; {