summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/libxfce4ui.nix
blob: 76c285ae599a37734292bd97a4593ea2b7a5ff6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
, libstartup_notification }:

stdenv.mkDerivation rec {
  name = "libxfce4ui-4.8.1";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/libxfce4ui/4.8/${name}.tar.bz2";
    sha1 = "408645581e589135aa03d2e9b84f4eede68596b2";
  };

  buildInputs =
    [ pkgconfig intltool gtk libxfce4util xfconf
      libstartup_notification
    ];

  enableParallelBuilding = true;

  meta = {
    homepage = http://www.xfce.org/;
    description = "Basic GUI library for Xfce";
    license = "LGPLv2+";
  };
}