2018-12-31 03:40:47 +00:00
|
|
|
{ stdenv, fetchurl, libX11, xorgproto }:
|
2010-11-04 08:28:24 +00:00
|
|
|
|
2015-04-02 13:50:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "stalonetray";
|
2017-05-04 13:49:37 +01:00
|
|
|
version = "0.8.3";
|
2016-02-23 00:57:11 +00:00
|
|
|
|
2015-04-02 13:50:49 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/stalonetray/${pname}-${version}.tar.bz2";
|
2017-05-04 13:49:37 +01:00
|
|
|
sha256 = "0k7xnpdb6dvx25d67v0crlr32cdnzykdsi9j889njiididc8lm1n";
|
2010-11-04 08:28:24 +00:00
|
|
|
};
|
2016-02-23 00:57:11 +00:00
|
|
|
|
2018-12-31 03:40:47 +00:00
|
|
|
buildInputs = [ libX11 xorgproto ];
|
2010-11-04 08:28:24 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-23 00:57:11 +00:00
|
|
|
|
2015-04-02 13:50:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-11-04 08:28:24 +00:00
|
|
|
description = "Stand alone tray";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://stalonetray.sourceforge.net";
|
2017-05-04 13:49:37 +01:00
|
|
|
license = licenses.gpl2;
|
2015-11-25 22:04:57 +00:00
|
|
|
platforms = platforms.linux;
|
2017-05-04 13:49:37 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2010-11-04 08:28:24 +00:00
|
|
|
};
|
2015-04-02 13:50:49 +01:00
|
|
|
|
2010-11-04 08:28:24 +00:00
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
2018-11-24 18:58:03 +00:00
|
|
|
downloadPage = "https://sourceforge.net/projects/stalonetray/files/";
|
2010-11-04 08:28:24 +00:00
|
|
|
};
|
|
|
|
};
|
2015-04-02 13:50:49 +01:00
|
|
|
}
|