biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / numdiff / default.nix
blobf12c0fdea5e80d50aaf737d36bdc64f09f5104ca
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 = [ ];
24     platforms = platforms.unix;
25   };