nixpkgs/pkgs/development/tools/misc/gob2/default.nix

21 lines
586 B
Nix
Raw Normal View History

2015-04-05 08:22:12 +03:00
{ stdenv, fetchurl, pkgconfig, glib, bison, flex }:
stdenv.mkDerivation rec {
2015-04-05 08:22:12 +03:00
name = "gob2-${minVer}.18";
minVer = "2.0";
2015-04-05 08:22:12 +03:00
src = fetchurl {
url = "mirror://gnome/sources/gob2/${minVer}/${name}.tar.gz";
sha256 = "1r242s3rsxyqiw2ic2gdpvvrx903jgjd1aa4mkl26in5k9zk76fa";
};
# configure script looks for d-bus but it is only needed for tests
buildInputs = [ glib bison flex pkgconfig ];
meta = {
description = "Preprocessor for making GObjects with inline C code";
homepage = http://www.jirka.org/gob.html;
license = stdenv.lib.licenses.gpl2Plus;
};
}