summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/art/xfce4-icon-theme.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce-4.8/art/xfce4-icon-theme.nix')
-rw-r--r--pkgs/desktops/xfce-4.8/art/xfce4-icon-theme.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce-4.8/art/xfce4-icon-theme.nix b/pkgs/desktops/xfce-4.8/art/xfce4-icon-theme.nix
new file mode 100644
index 000000000000..a17267a336c3
--- /dev/null
+++ b/pkgs/desktops/xfce-4.8/art/xfce4-icon-theme.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk }:
+
+stdenv.mkDerivation rec {
+  name = "xfce4-icon-theme-4.4.3";
+  
+  src = fetchurl {
+    url = "http://www.xfce.org/archive/src/art/xfce4-icon-theme/4.4/${name}.tar.bz2";
+    sha1 = "0c0d0c45cd4a7f609310db8e9d17c1c4a131a6e7";
+  };
+
+  buildInputs = [ pkgconfig intltool gtk ];
+
+  meta = {
+    homepage = http://www.xfce.org/;
+    description = "Icons for Xfce";
+  };
+}