about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.18/core/gnome-session
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-09-25 10:36:01 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-09-25 10:48:41 +0200
commit26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9 (patch)
tree6d0f51f30841d919d2ff07ff305ae100a857b02a /pkgs/desktops/gnome-3/3.18/core/gnome-session
parent41fc49ed7e94d9a0aef044a6ea34c142e376d3f7 (diff)
downloadnixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.gz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.bz2
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.lz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.xz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.zst
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.zip
gnome3: init 3.18
Diffstat (limited to 'pkgs/desktops/gnome-3/3.18/core/gnome-session')
-rw-r--r--pkgs/desktops/gnome-3/3.18/core/gnome-session/default.nix25
-rw-r--r--pkgs/desktops/gnome-3/3.18/core/gnome-session/src.nix10
2 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-session/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-session/default.nix
new file mode 100644
index 000000000000..dedad0729d1b
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-session/default.nix
@@ -0,0 +1,25 @@
+{ fetchurl, stdenv, pkgconfig, gnome3, glib, dbus_glib, json_glib, upower
+, libxslt, intltool, makeWrapper, systemd, xorg }:
+
+stdenv.mkDerivation rec {
+  inherit (import ./src.nix fetchurl) name src;
+
+  configureFlags = "--enable-systemd";
+
+  buildInputs = with gnome3;
+    [ pkgconfig glib gnome_desktop gtk dbus_glib json_glib libxslt 
+      gnome3.gnome_settings_daemon xorg.xtrans gnome3.defaultIconTheme
+      gsettings_desktop_schemas upower intltool gconf makeWrapper systemd ];
+
+  preFixup = ''
+    wrapProgram "$out/bin/gnome-session" \
+      --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
+      --suffix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH"
+  '';
+
+  meta = with stdenv.lib; {
+    platforms = platforms.linux;
+    maintainers = gnome3.maintainers;
+  };
+
+}
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-session/src.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-session/src.nix
new file mode 100644
index 000000000000..211cc140a881
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-session/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+  name = "gnome-session-3.18.0";
+
+  src = fetchurl {
+    url = mirror://gnome/sources/gnome-session/3.18/gnome-session-3.18.0.tar.xz;
+    sha256 = "ba23d0e41e90f238103835603eded0f30a7cc56506b68168899377785aec706f";
+  };
+}