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 let
pname = "clutter-gtk"; pname = "clutter-gtk";
version = "1.8.4"; version = "1.8.4";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
@ -12,7 +15,7 @@ stdenv.mkDerivation rec {
}; };
propagatedBuildInputs = [ clutter gtk3 ]; propagatedBuildInputs = [ clutter gtk3 ];
nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
postBuild = "rm -rf $out/share/gtk-doc"; postBuild = "rm -rf $out/share/gtk-doc";