1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/tools/text/numdiff/default.nix

24 lines
674 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2017-02-28 23:16:33 +00:00
stdenv.mkDerivation rec {
name = "numdiff-${version}";
2017-02-28 23:16:33 +00:00
version = "5.9.0";
src = fetchurl {
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
2017-02-28 23:16:33 +00:00
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
};
2017-02-28 23:16:33 +00:00
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
2014-11-11 13:20:43 +00:00
or/and different numeric formats
'';
homepage = http://www.nongnu.org/numdiff/;
2017-02-28 23:16:33 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ndowens ];
2017-02-28 23:16:33 +00:00
platforms = platforms.gnu;
};
}