summary refs log tree commit diff
path: root/pkgs/tools/text/numdiff/default.nix
blob: eb5ebf612b2bb5bb0b95ef1e2d3e25dbd39c92f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl }:

let
  version = "5.6.1";
in
stdenv.mkDerivation {
  name = "numdiff-${version}";
  src = fetchurl {
    url = "http://ftp.igh.cnrs.fr/pub/nongnu/numdiff/numdiff-${version}.tar.gz";
    sha256 = "062byxp9vajj4flg1rqh0r2nwg9yx608mbsj5y25wkrzmkgcq3fx";
  };
  meta = {
    description = ''
      A little program that can be used to compare putatively similar files
      line by line and field by field, ignoring small numeric differences
      or/and different numeric formats.
    '';
    homepage = "http://www.nongnu.org/numdiff/";
    license = stdenv.lib.licenses.gpl3Plus;
    maintainers = stdenv.lib.maintainers.bbenoist;
    platforms = stdenv.lib.platforms.gnu;
  };
}