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

stdenv.mkDerivation rec {
  name = "xfce-utils-4.6.2";
  
  src = fetchurl {
    url = "http://archive.xfce.org/xfce/4.6.2/src/${name}.tar.bz2";
    sha1 = "6373886c3d70e576859741bde747a235567ffd8e";
  };

  configureFlags = "--with-xsession-prefix=$(out)/share/xsessions";

  buildInputs = [ pkgconfig intltool gtk libxfce4util libxfcegui4 ];

  meta = {
    homepage = http://www.xfce.org/;
    description = "Utilities and scripts for Xfce";
    license = "GPLv2+";
  };
}