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

stdenv.mkDerivation rec {
  name = "libxfce4util-4.6.2";
  
  src = fetchurl {
    url = "http://archive.xfce.org/xfce-4.6.2/src/${name}.tar.bz2";
    sha256 = "10wcw7r8cjb0farffic037pcjr5bwrjrm8s3jrcb7c0b038pwbmf";
  };

  buildInputs = [ pkgconfig glib intltool ];

  meta = {
    homepage = http://www.xfce.org/;
    description = "Basic utility non-GUI functions for Xfce";
    license = "bsd";
  };
}