nixpkgs/pkgs/desktops/xfce-4.6/core/libxfce4menu.nix
Rickard Nilsson cd55352e46 Updated the Xfce URLs.
The upstream releases have moved from http://www.xfce.org/archive to
http://archive.xfce.org.

svn path=/nixpkgs/trunk/; revision=34128
2012-05-15 21:45:35 +00:00

19 lines
467 B
Nix

{ 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+";
};
}