mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Add gnome3.mutter
This commit is contained in:
parent
35e76926a5
commit
914b6c249b
24
pkgs/desktops/gnome-3/core/mutter/default.nix
Normal file
24
pkgs/desktops/gnome-3/core/mutter/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ fetchurl, stdenv, pkgconfig, gnome3, intltool, gobjectIntrospection, upower, cairo
|
||||
, pango, cogl, clutter }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mutter-3.10.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/mutter/3.10/${name}.tar.xz";
|
||||
sha256 = "000iclb96mgc4rp2q0cy72nfwyfzl6avijl9nmk87f5sgyy670a3";
|
||||
};
|
||||
|
||||
# fatal error: gio/gunixfdlist.h: No such file or directory
|
||||
NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
|
||||
|
||||
buildInputs = with gnome3;
|
||||
[ pkgconfig intltool glib gobjectIntrospection gtk gsettings_desktop_schemas upower
|
||||
gnome_desktop cairo pango cogl clutter zenity ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
}
|
@ -69,6 +69,8 @@ rec {
|
||||
|
||||
libzapojit = callPackage ./core/libzapojit { };
|
||||
|
||||
mutter = callPackage ./core/mutter { };
|
||||
|
||||
nautilus = callPackage ./core/nautilus { };
|
||||
|
||||
rest = callPackage ./core/rest { };
|
||||
|
Loading…
Reference in New Issue
Block a user