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

21 lines
552 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfcegui4 }:
stdenv.mkDerivation rec {
name = "xfce-utils-4.6.2";
src = fetchurl {
url = "http://archive.xfce.org/xfce/4.6.2/src/${name}.tar.bz2";
sha1 = "6373886c3d70e576859741bde747a235567ffd8e";
};
configureFlags = "--with-xsession-prefix=$(out)/share/xsessions";
buildInputs = [ pkgconfig intltool gtk libxfce4util libxfcegui4 ];
meta = {
homepage = http://www.xfce.org/;
description = "Utilities and scripts for Xfce";
license = "GPLv2+";
};
}