about summary refs log tree commit diff
path: root/pkgs/tools/text/numdiff/default.nix
blob: 9cef82e5e5302378f356c413b5397e0387f9059c (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.8.1";
in
stdenv.mkDerivation {
  name = "numdiff-${version}";
  src = fetchurl {
    url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
    sha256 = "00zm9955gjsid0daa94sbw69klk0vrnrrh0ihijza99kysnvmblr";
  };
  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;
  };
}