summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/xfce-utils.nix
blob: 58ef4fbef2a44c51e21316ea1072fc7b7b96525d (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, libxfce4ui }:

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

  configureFlags = "--with-xsession-prefix=$(out)/share/xsessions --with-vendor-info=NixOS.org";

  buildInputs = [ pkgconfig intltool gtk libxfce4util libxfce4ui ];

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