about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfce4-session.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-02-21 12:16:51 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-02-21 12:16:51 +0100
commite979d7ad2f6fb2e5e7235be3100eb369572fcba5 (patch)
tree1e137ce2370214f178ea4cce31e0a56bf9f3e80d /pkgs/desktops/xfce/core/xfce4-session.nix
parentad057db2d61aa1013a7b06a26d7e2167d8224be8 (diff)
downloadnixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.tar
nixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.tar.gz
nixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.tar.bz2
nixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.tar.lz
nixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.tar.xz
nixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.tar.zst
nixlib-e979d7ad2f6fb2e5e7235be3100eb369572fcba5.zip
vlada/xfce
Major Xfce refactoring, also adding versions 4.10.*

Signed-off-by: Vladimír Čunát <vcunat@gmail.com>
Diffstat (limited to 'pkgs/desktops/xfce/core/xfce4-session.nix')
-rw-r--r--pkgs/desktops/xfce/core/xfce4-session.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/xfce4-session.nix b/pkgs/desktops/xfce/core/xfce4-session.nix
new file mode 100644
index 000000000000..a8e7e66c7051
--- /dev/null
+++ b/pkgs/desktops/xfce/core/xfce4-session.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui, xfce4panel
+, libwnck, dbus_glib, xfconf, libglade, xorg }:
+
+#TODO: gnome stuff: gconf (assistive?), keyring
+
+stdenv.mkDerivation rec {
+  p_name  = "xfce4-session";
+  ver_maj = "4.10";
+  ver_min = "0";
+
+  src = fetchurl {
+    url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
+    sha256 = "1kj65jkjhd0ysf0yxsf88wzpyv6n8i8qgd3gb502hf1x9jksk2mv";
+  };
+  name = "${p_name}-${ver_maj}.${ver_min}";
+
+  buildInputs =
+    [ pkgconfig intltool gtk libxfce4util libxfce4ui libwnck dbus_glib
+      xfconf xfce4panel libglade xorg.iceauth
+    ];
+
+  configureFlags = [ "--with-xsession-prefix=$$out" ];
+
+  preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
+
+  meta = {
+    homepage = http://www.xfce.org/projects/xfce4-session;
+    description = "Session manager for Xfce";
+    license = "GPLv2+";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.eelco ];
+  };
+}