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

stdenv.mkDerivation rec {
  pname = "wmsystemtray";
  version = "1.4";

  src = fetchurl {
    url = "mirror://sourceforge/project/${pname}/${pname}/${pname}-${version}.tar.gz";
     sha256 = "sha256-jt70NpHp//BxAA4pFmx8GtQgwJVukGgVEGHogcisl+k=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libX11 libXpm libXext libXfixes libXmu ];

  meta = with lib; {
    description = "A system tray for Windowmaker";
    homepage = "http://wmsystemtray.sourceforge.net";
    license = licenses.gpl2Only;
    maintainers = [ maintainers.bstrik ];
    platforms = platforms.linux;
  };
}