at 18.09-beta 693 B view raw
1{ stdenv, fetchurl }: 2 3 4stdenv.mkDerivation rec { 5 name = "numdiff-${version}"; 6 version = "5.9.0"; 7 8 src = fetchurl { 9 url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz"; 10 sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47"; 11 }; 12 meta = with stdenv.lib; { 13 description = '' 14 A little program that can be used to compare putatively similar files 15 line by line and field by field, ignoring small numeric differences 16 or/and different numeric formats 17 ''; 18 homepage = http://www.nongnu.org/numdiff/; 19 license = licenses.gpl3Plus; 20 maintainers = with maintainers; [ ndowens ]; 21 platforms = platforms.gnu ++ platforms.linux; 22 }; 23}