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

stdenv.mkDerivation rec {
  name = "garcon-0.1.8";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/garcon/0.1/${name}.tar.bz2";
    sha1 = "e5eac6a13208c81ccad0941656c01e7a69530f03";
  };

  buildInputs = [ pkgconfig intltool glib ];

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