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

stdenv.mkDerivation rec {
  name = "stalonetray-${version}";
  version = "0.8.3";

  src = fetchurl {
    url = "mirror://sourceforge/stalonetray/${name}.tar.bz2";
    sha256 = "0k7xnpdb6dvx25d67v0crlr32cdnzykdsi9j889njiididc8lm1n";
  };

  buildInputs = [ libX11 xproto ];

  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    description = "Stand alone tray";
    homepage = http://stalonetray.sourceforge.net;
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ raskin ];
  };

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