summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/core/xfdesktop.nix
blob: 90a69bd8692ffced2a46448a505ae53c1776a7b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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+";
  };
}