1{
2 lib,
3 stdenv,
4 fetchurl,
5 libintl,
6}:
7
8stdenv.mkDerivation rec {
9 pname = "numdiff";
10 version = "5.9.0";
11
12 src = fetchurl {
13 url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
14 sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
15 };
16
17 buildInputs = [ libintl ];
18
19 meta = with lib; {
20 description = ''
21 A little program that can be used to compare putatively similar files
22 line by line and field by field, ignoring small numeric differences
23 or/and different numeric formats
24 '';
25 homepage = "https://www.nongnu.org/numdiff/";
26 license = licenses.gpl3Plus;
27 maintainers = [ ];
28 platforms = platforms.unix;
29 };
30}