lol
at 18.03-beta 22 lines 681 B view raw
1{ stdenv, fetchurl, 2 bison, flex, expat, file 3}: 4 5stdenv.mkDerivation rec { 6 name = "udunits-2.2.26"; 7 src = fetchurl { 8 url = "ftp://ftp.unidata.ucar.edu/pub/udunits/${name}.tar.gz"; 9 sha256 = "0v9mqw4drnkzkm57331ail6yvs9485jmi37s40lhvmf7r5lli3rn"; 10 }; 11 12 nativeBuildInputs = [ bison flex file ]; 13 buildInputs = [ expat ]; 14 15 meta = with stdenv.lib; { 16 homepage = https://www.unidata.ucar.edu/software/udunits/; 17 description = "A C-based package for the programatic handling of units of physical quantities"; 18 license = licenses.bsdOriginal; 19 platforms = platforms.linux; 20 maintainers = with maintainers; [ pSub ]; 21 }; 22}