lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 19 lines 411 B view raw
1{ stdenv, fetchurl, 2 bison, flex, expat, file 3}: 4 5stdenv.mkDerivation rec { 6 name = "udunits-2.1.24"; 7 src = fetchurl { 8 url = "ftp://ftp.unidata.ucar.edu/pub/udunits/${name}.tar.gz"; 9 sha256 = "1l0fdsl55374w7fjyd1wdx474f3p265b6rw1lq269cii61ca8prf"; 10 }; 11 12 buildInputs = [ 13 bison flex expat file 14 ]; 15 16 patches = [ ./configure.patch ]; 17 18 MAGIC_CMD="${file}/bin/file"; 19}