clutter-gtk: build with meson

This commit is contained in:
Anton-Latukha 2018-06-01 19:34:56 +03:00
parent d4e5243207
commit 45e5a49673

View file

@ -1,8 +1,11 @@
{ fetchurl, stdenv, pkgconfig, gobjectIntrospection, clutter, gtk3, gnome3 }:
{ fetchurl, stdenv, pkgconfig, meson, ninja
, gobjectIntrospection, clutter, gtk3, gnome3 }:
let
pname = "clutter-gtk";
version = "1.8.4";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
@ -12,7 +15,7 @@ stdenv.mkDerivation rec {
};
propagatedBuildInputs = [ clutter gtk3 ];
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
postBuild = "rm -rf $out/share/gtk-doc";