about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/xfce4-dev-tools.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-04-29 11:44:58 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-04-29 11:45:37 +0200
commita8ab0e53a4eba58cd2d7f05cf4a886278cd4d780 (patch)
treee1ffd88e3a917ef6588aeca93c90484c3103e788 /pkgs/desktops/xfce/core/xfce4-dev-tools.nix
parentfe8c1c411867f546d0069563a08606c4ff7ed465 (diff)
downloadnixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.tar
nixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.tar.gz
nixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.tar.bz2
nixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.tar.lz
nixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.tar.xz
nixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.tar.zst
nixlib-a8ab0e53a4eba58cd2d7f05cf4a886278cd4d780.zip
xfce4session: make it systemd-aware
This should solve many issuses, including:
 - show mountable volumes and mount-on-click (in Thunar)
 - fix shutdown actions (and don't ask for password anymore)

It doesn't explicitly depend on anything in x-updates,
but AFAIK noone has tested it against master (yet).
Connected to #441.
Diffstat (limited to 'pkgs/desktops/xfce/core/xfce4-dev-tools.nix')
-rw-r--r--pkgs/desktops/xfce/core/xfce4-dev-tools.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/xfce4-dev-tools.nix b/pkgs/desktops/xfce/core/xfce4-dev-tools.nix
new file mode 100644
index 000000000000..e56eb3f0a713
--- /dev/null
+++ b/pkgs/desktops/xfce/core/xfce4-dev-tools.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, glib, autoconf, automake, libtool, intltool }:
+
+stdenv.mkDerivation rec {
+  p_name  = "xfce4-dev-tools";
+  ver_maj = "4.10";
+  ver_min = "0";
+
+  src = fetchurl {
+    url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
+    sha256 = "1y1byfjciqhxqfxbjfp22bn5lxk3a01ng7zfjha8h5mzzfxlk5pp";
+  };
+  name = "${p_name}-${ver_maj}.${ver_min}";
+
+  buildInputs = [ pkgconfig glib ];
+
+  # not needed to build it but to use it
+  propagatedBuildInputs = [ autoconf automake libtool intltool ];
+
+  meta = {
+    homepage = http://foo-projects.org/~benny/projects/xfce4-dev-tools/;
+    description = "Tools and M4 macros for Xfce4 developers";
+    license = "GPLv2+";
+  };
+}