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

23 lines
669 B
Nix
Raw Normal View History

2015-04-05 06:22:12 +01:00
{ stdenv, fetchurl, pkgconfig, glib, bison, flex }:
stdenv.mkDerivation rec {
2017-12-19 04:24:40 +00:00
name = "gob2-${minVer}.20";
2015-04-05 06:22:12 +01:00
minVer = "2.0";
2015-04-05 06:22:12 +01:00
src = fetchurl {
2017-12-19 04:24:40 +00:00
url = "mirror://gnome/sources/gob2/${minVer}/${name}.tar.xz";
sha256 = "5fe5d7990fd65b0d4b617ba894408ebaa6df453f2781c15a1cfdf2956c0c5428";
};
# configure script looks for d-bus but it is only needed for tests
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib bison flex ];
meta = {
description = "Preprocessor for making GObjects with inline C code";
2018-07-06 02:35:28 +01:00
homepage = https://www.jirka.org/gob.html;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}