summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/art/xfce4-icon-theme.nix
blob: f42790c621663f18ef1cd8df725f9cbce7273170 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, pkgconfig, intltool, gtk }:

stdenv.mkDerivation rec {
  name = "xfce4-icon-theme-4.4.3";
  
  src = fetchurl {
    url = "http://archive.xfce.org/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";
  };
}