Merge pull request #23305 from ndowens/numdiff

numdiff: 5.8.1 -> 5.9.0
This commit is contained in:
Jörg Thalheim 2017-03-01 00:27:28 +01:00 committed by GitHub
commit d4c0bee936

View File

@ -1,23 +1,23 @@
{ stdenv, fetchurl }: { stdenv, fetchurl }:
let
version = "5.8.1"; stdenv.mkDerivation rec {
in
stdenv.mkDerivation {
name = "numdiff-${version}"; name = "numdiff-${version}";
version = "5.9.0";
src = fetchurl { src = fetchurl {
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz"; url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
sha256 = "00zm9955gjsid0daa94sbw69klk0vrnrrh0ihijza99kysnvmblr"; sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
}; };
meta = { meta = with stdenv.lib; {
description = '' description = ''
A little program that can be used to compare putatively similar files A little program that can be used to compare putatively similar files
line by line and field by field, ignoring small numeric differences line by line and field by field, ignoring small numeric differences
or/and different numeric formats or/and different numeric formats
''; '';
homepage = http://www.nongnu.org/numdiff/; homepage = http://www.nongnu.org/numdiff/;
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = [ stdenv.lib.maintainers.bbenoist ]; maintainers = with maintainers; [ bbenoist ndowens ];
platforms = stdenv.lib.platforms.gnu; platforms = platforms.gnu;
}; };
} }