about summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/art/xfce4-icon-theme.nix
blob: a17267a336c347b11b02769644eef73ff02a3826 (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://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";
  };
}