nixpkgs/pkgs/applications/window-managers/stalonetray/default.nix

30 lines
706 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libX11, xproto }:
stdenv.mkDerivation rec {
name = "stalonetray-${version}";
2017-05-04 12:49:37 +00:00
version = "0.8.3";
2016-02-23 00:57:11 +00:00
src = fetchurl {
url = "mirror://sourceforge/stalonetray/${name}.tar.bz2";
2017-05-04 12:49:37 +00:00
sha256 = "0k7xnpdb6dvx25d67v0crlr32cdnzykdsi9j889njiididc8lm1n";
};
2016-02-23 00:57:11 +00:00
buildInputs = [ libX11 xproto ];
hardeningDisable = [ "format" ];
2016-02-23 00:57:11 +00:00
meta = with stdenv.lib; {
description = "Stand alone tray";
2017-05-04 12:49:37 +00:00
homepage = http://stalonetray.sourceforge.net;
license = licenses.gpl2;
platforms = platforms.linux;
2017-05-04 12:49:37 +00:00
maintainers = with maintainers; [ raskin ];
};
passthru = {
updateInfo = {
downloadPage = "http://sourceforge.net/projects/stalonetray/files/";
};
};
}