summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/xfce4-panel.nix
blob: e14d1acf33da427543ee744c9d56245e227725e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, garcon
, libxfce4ui, xfconf, libwnck, exo }:

stdenv.mkDerivation rec {
  name = "xfce4-panel-4.8.6";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/xfce4-panel/4.8/${name}.tar.bz2";
    sha1 = "332fc968332e6271e1bb65d6de8de2524b0440ec";
  };

  patches = [ ./xfce4-panel-datadir.patch ];
  patchFlags = "-p1";

  buildInputs =
    [ pkgconfig intltool gtk libxfce4util garcon libxfce4ui xfconf
      exo libwnck
    ];

  enableParallelBuilding = true;

  meta = {
    homepage = http://www.xfce.org/;
    description = "Xfce panel";
    license = "GPLv2+";
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.eelco ];
  };
}