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