summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/core/libxfce4menu.nix
blob: fda09979819e099b3f9ae207210d9045267196e2 (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, gtk, libxfce4util }:

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

  buildInputs = [ pkgconfig glib intltool gtk libxfce4util ];

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