1 { lib, stdenv, fetchurl, libintl }:
4 stdenv.mkDerivation rec {
9 url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
10 sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
13 buildInputs = [ libintl ];
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
21 homepage = "https://www.nongnu.org/numdiff/";
22 license = licenses.gpl3Plus;
23 maintainers = with maintainers; [];
24 platforms = platforms.unix;