summary refs log tree commit diff
path: root/pkgs/applications/window-managers/stalonetray/default.nix
blob: 0c362dce60b57c306f78f08822f54b4472f7f17c (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
{ stdenv, fetchurl, libX11, xproto }:

stdenv.mkDerivation rec {
  name = "stalonetray-${version}";
  version = "0.8.1";
  src = fetchurl {
    url = "mirror://sourceforge/stalonetray/${name}.tar.bz2";
    sha256 = "1wp8pnlv34w7xizj1vivnc3fkwqq4qgb9dbrsg15598iw85gi8ll";
  };
  buildInputs = [ libX11 xproto ];

  meta = with stdenv.lib; {
    description = "Stand alone tray";
    maintainers = with maintainers; [ raskin ];
    platforms = with platforms; linux;
  };

  passthru = {
    updateInfo = {
      downloadPage = "http://sourceforge.net/projects/stalonetray/files/";
    };
  };
}