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

30 lines
717 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libX11, xorgproto }:
stdenv.mkDerivation rec {
pname = "stalonetray";
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/${pname}-${version}.tar.bz2";
2017-05-04 12:49:37 +00:00
sha256 = "0k7xnpdb6dvx25d67v0crlr32cdnzykdsi9j889njiididc8lm1n";
};
2016-02-23 00:57:11 +00:00
buildInputs = [ libX11 xorgproto ];
hardeningDisable = [ "format" ];
2016-02-23 00:57:11 +00:00
meta = with stdenv.lib; {
description = "Stand alone tray";
homepage = "http://stalonetray.sourceforge.net";
2017-05-04 12:49:37 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
2017-05-04 12:49:37 +00:00
maintainers = with maintainers; [ raskin ];
};
passthru = {
updateInfo = {
2018-11-24 18:58:03 +00:00
downloadPage = "https://sourceforge.net/projects/stalonetray/files/";
};
};
}