1 { lib, stdenv, fetchurl, pkg-config, glib, bison, flex, gnome }:
3 stdenv.mkDerivation rec {
8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
9 sha256 = "5fe5d7990fd65b0d4b617ba894408ebaa6df453f2781c15a1cfdf2956c0c5428";
12 # configure script looks for d-bus but it is only needed for tests
13 nativeBuildInputs = [ pkg-config ];
14 buildInputs = [ glib bison flex ];
17 updateScript = gnome.updateScript {
19 versionPolicy = "none";
24 description = "Preprocessor for making GObjects with inline C code";
26 homepage = "https://www.jirka.org/gob.html";
27 license = lib.licenses.gpl2Plus;
28 platforms = lib.platforms.unix;