nixpkgs/pkgs/desktops/xfce-4.6/core/xfce4-session.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

23 lines
586 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfcegui4
, libwnck, dbus_glib, xfconf, libglade, xorg }:
stdenv.mkDerivation rec {
name = "xfce4-session-4.6.2";
src = fetchurl {
url = "http://archive.xfce.org/xfce/4.6.2/src/${name}.tar.bz2";
sha1 = "2a5778a1543f97845f118a186e2dbb8a8ea3ff4b";
};
buildInputs =
[ pkgconfig intltool gtk libxfce4util libxfcegui4 libwnck dbus_glib
xfconf libglade xorg.iceauth
];
meta = {
homepage = http://www.xfce.org/;
description = "Session manager for Xfce";
license = "GPLv2+";
};
}