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