linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / numdiff / default.nix
blob317d29003cd313b1d6af48e41fe80b5579414816
1 { lib, stdenv, fetchurl, libintl }:
4 stdenv.mkDerivation rec {
5   pname = "numdiff";
6   version = "5.9.0";
8   src = fetchurl {
9     url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
10     sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
11   };
13   buildInputs = [ libintl ];
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   };