2013-05-31 23:49:30 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2017-02-28 23:16:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-31 23:49:30 +01:00
|
|
|
name = "numdiff-${version}";
|
2017-02-28 23:16:33 +00:00
|
|
|
version = "5.9.0";
|
|
|
|
|
2013-05-31 23:49:30 +01:00
|
|
|
src = fetchurl {
|
2013-07-14 03:23:06 +01:00
|
|
|
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
|
2017-02-28 23:16:33 +00:00
|
|
|
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
|
2013-05-31 23:49:30 +01:00
|
|
|
};
|
2017-02-28 23:16:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-31 23:49:30 +01:00
|
|
|
description = ''
|
|
|
|
A little program that can be used to compare putatively similar files
|
|
|
|
line by line and field by field, ignoring small numeric differences
|
2014-11-11 13:20:43 +00:00
|
|
|
or/and different numeric formats
|
2013-05-31 23:49:30 +01:00
|
|
|
'';
|
2014-09-13 12:51:39 +01:00
|
|
|
homepage = http://www.nongnu.org/numdiff/;
|
2017-02-28 23:16:33 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-03-23 02:02:09 +00:00
|
|
|
maintainers = with maintainers; [ ndowens ];
|
2017-02-28 23:16:33 +00:00
|
|
|
platforms = platforms.gnu;
|
2013-05-31 23:49:30 +01:00
|
|
|
};
|
|
|
|
}
|