summary refs log tree commit diff
path: root/pkgs/applications/window-managers/windowmaker/dockapps/wmsystemtray.nix
blob: c28d090e0bd783b3c5db20a8ed926923c5224cfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, libX11, libXpm, libXext, libXfixes, libXmu }:

stdenv.mkDerivation {
  name = "wmsystemtray-1.4";
  src = fetchurl {
     url = http://sourceforge.net/projects/wmsystemtray/files/wmsystemtray/wmsystemtray-1.4.tar.gz;
     sha256 = "8edef43691e9fff071000e29166c7c1ad420c0956e9068151061e881c8ac97e9";
  };

  buildInputs = [ pkgconfig libX11 libXpm libXext libXfixes libXmu ];

  meta = {
    description = "Systemtray for Windowmaker";
    homepage = "http://wmsystemtray.sourceforge.net";
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.bstrik ];
    platforms = stdenv.lib.platforms.linux;
  };
}