2013-06-01 00:49:30 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2017-03-01 00:16:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "numdiff";
|
2017-03-01 00:16:33 +01:00
|
|
|
version = "5.9.0";
|
|
|
|
|
2013-06-01 00:49:30 +02:00
|
|
|
src = fetchurl {
|
2013-07-14 04:23:06 +02:00
|
|
|
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
|
2017-03-01 00:16:33 +01:00
|
|
|
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
|
2013-06-01 00:49:30 +02:00
|
|
|
};
|
2017-03-01 00:16:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-01 00:49:30 +02: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 14:20:43 +01:00
|
|
|
or/and different numeric formats
|
2013-06-01 00:49:30 +02:00
|
|
|
'';
|
2018-12-01 18:32:32 +01:00
|
|
|
homepage = https://www.nongnu.org/numdiff/;
|
2017-03-01 00:16:33 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2019-12-26 22:28:10 +01:00
|
|
|
maintainers = with maintainers; [];
|
2018-05-01 00:43:54 +02:00
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2013-06-01 00:49:30 +02:00
|
|
|
};
|
|
|
|
}
|