lol
at 16.09-beta 21 lines 629 B view raw
1{ stdenv, fetchurl, pkgconfig, glib, bison, flex }: 2 3stdenv.mkDerivation rec { 4 name = "gob2-${minVer}.18"; 5 minVer = "2.0"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/gob2/${minVer}/${name}.tar.gz"; 9 sha256 = "1r242s3rsxyqiw2ic2gdpvvrx903jgjd1aa4mkl26in5k9zk76fa"; 10 }; 11 12 # configure script looks for d-bus but it is only needed for tests 13 buildInputs = [ glib bison flex pkgconfig ]; 14 15 meta = { 16 description = "Preprocessor for making GObjects with inline C code"; 17 homepage = http://www.jirka.org/gob.html; 18 license = stdenv.lib.licenses.gpl2Plus; 19 platforms = stdenv.lib.platforms.unix; 20 }; 21}