summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix')
-rw-r--r--pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix b/pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix
new file mode 100644
index 000000000000..bab382a263f0
--- /dev/null
+++ b/pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk }:
+
+stdenv.mkDerivation rec {
+  name = "gtk-xfce-engine-2.6.0";
+  
+  src = fetchurl {
+    url = "http://www.xfce.org/archive/xfce/4.6.2/src/${name}.tar.bz2";
+    sha1 = "a7be2f330833d150c5fb37f68a4c2138348b5446";
+  };
+
+  buildInputs =
+    [ pkgconfig intltool gtk ];
+
+  meta = {
+    homepage = http://www.xfce.org/;
+    description = "GTK+ theme engine for Xfce";
+    license = "GPLv2+";
+  };
+}