summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfwm4.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/xfwm4.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/xfwm4.nix')
-rw-r--r--pkgs/desktops/xfce/core/xfwm4.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/xfwm4.nix b/pkgs/desktops/xfce/core/xfwm4.nix
new file mode 100644
index 000000000000..e2fea73eaeb4
--- /dev/null
+++ b/pkgs/desktops/xfce/core/xfwm4.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, pkgconfig, gtk, intltool, libglade, libxfce4util
+, libxfce4ui, xfconf, libwnck, libstartup_notification, xorg }:
+
+stdenv.mkDerivation rec {
+  p_name  = "xfwm4";
+  ver_maj = "4.10";
+  ver_min = "0";
+
+  src = fetchurl {
+    url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
+    sha256 = "170zzs7adj47srsi2cl723w9pl8k8awd7w1bpzxby7hj92zmf8s9";
+  };
+  name = "${p_name}-${ver_maj}.${ver_min}";
+
+  #TODO: kde systray, docs
+  buildInputs =
+    [ pkgconfig intltool gtk libglade libxfce4util libxfce4ui xfconf
+      libwnck libstartup_notification
+      xorg.libXcomposite xorg.libXfixes xorg.libXdamage
+    ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    homepage = http://www.xfce.org/projects/xfwm4;
+    description = "Window manager for Xfce";
+    license = "GPLv2+";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.eelco ];
+  };
+}