summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4/core/gtk-xfce-engine.nix
blob: bab382a263f06f054195b2f40e149841c84d4ad3 (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.6.0";
  
  src = fetchurl {
    url = "http://www.xfce.org/archive/xfce/4.6.2/src/${name}.tar.bz2";
    sha1 = "a7be2f330833d150c5fb37f68a4c2138348b5446";
  };

  buildInputs =
    [ pkgconfig intltool gtk ];

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