nixpkgs/pkgs/desktops/xfce-4.6/core/xfdesktop.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
612 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfcegui4
, libwnck, xfconf, libglade, libxfce4menu, xfce4panel, thunar, exo }:
stdenv.mkDerivation rec {
name = "xfdesktop-4.6.2";
src = fetchurl {
url = "http://archive.xfce.org/xfce/4.6.2/src/${name}.tar.bz2";
sha1 = "cefcd1c1386d34386d4e900cbf88b7c24ef3bafb";
};
buildInputs =
[ pkgconfig intltool gtk libxfce4util libxfcegui4 libwnck xfconf
libglade libxfce4menu xfce4panel thunar exo
];
meta = {
homepage = http://www.xfce.org/;
description = "Xfce desktop manager";
license = "GPLv2+";
};
}