summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/gtk-xfce-engine.nix
blob: 7cca247ae44144051cc433c36ab380072cc42f9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, intltool, gtk }:

stdenv.mkDerivation rec {
  name = "gtk-xfce-engine-2.8.1";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/gtk-xfce-engine/2.8/${name}.tar.bz2";
    sha1 = "d7779f07cc76585be063bc25fa91e660e1fd9c97";
  };

  buildInputs =
    [ pkgconfig intltool gtk ];

  meta = {
    homepage = http://www.xfce.org/;
    description = "GTK+ theme engine for Xfce";
    license = "GPLv2+";
  };
}