numdiff: 5.8.1 -> 5.9.0

This commit is contained in:
ndowens 2017-02-28 17:16:33 -06:00
parent 61785c5531
commit cb766725c7

View file

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