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

stdenv.mkDerivation rec {
  name = "xfce4-icon-theme-${v}";
  src = fetchXfce.art name h;

  buildInputs = [ pkgconfig intltool gtk ];

  meta = {
    homepage = http://www.xfce.org/;
    description = "Icons for Xfce";
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.eelco ];
  };
}