3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #23305 from ndowens/numdiff

numdiff: 5.8.1 -> 5.9.0
This commit is contained in:
Jörg Thalheim 2017-03-01 00:27:28 +01:00 committed by GitHub
commit d4c0bee936

View file

@ -1,23 +1,23 @@
{ stdenv, fetchurl }:
let
version = "5.8.1";
in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "numdiff-${version}";
version = "5.9.0";
src = fetchurl {
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
sha256 = "00zm9955gjsid0daa94sbw69klk0vrnrrh0ihijza99kysnvmblr";
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
};
meta = {
meta = with stdenv.lib; {
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;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ bbenoist ndowens ];
platforms = platforms.gnu;
};
}