nixpkgs/pkgs/tools/text/numdiff/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
697 B
Nix
Raw Normal View History

2021-03-03 12:07:41 +00:00
{ lib, stdenv, fetchurl, libintl }:
2017-02-28 23:16:33 +00:00
stdenv.mkDerivation rec {
pname = "numdiff";
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";
};
2021-03-03 12:07:41 +00:00
buildInputs = [ libintl ];
meta = with 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 = "https://www.nongnu.org/numdiff/";
2017-02-28 23:16:33 +00:00
license = licenses.gpl3Plus;
2019-12-26 21:28:10 +00:00
maintainers = with maintainers; [];
2021-03-03 12:07:41 +00:00
platforms = platforms.unix;
};
}