2021-01-17 02:09:27 +00:00
|
|
|
{ lib, fetchurl, stdenv, gettext, pkg-config, glib, gtk2, libX11, libSM, libICE, which
|
2016-08-12 04:21:13 +01:00
|
|
|
, IOKit ? null }:
|
2008-02-13 16:38:33 +00:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
with lib;
|
2017-03-23 01:35:44 +00:00
|
|
|
|
2010-02-08 13:24:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-04 10:22:28 +01:00
|
|
|
name = "gkrellm-2.3.11";
|
2017-03-23 01:35:44 +00:00
|
|
|
|
2008-02-13 16:38:33 +00:00
|
|
|
src = fetchurl {
|
2017-03-23 01:35:44 +00:00
|
|
|
url = "http://gkrellm.srcbox.net/releases/${name}.tar.bz2";
|
2019-08-04 10:22:28 +01:00
|
|
|
sha256 = "01lccz4fga40isv09j8rjgr0qy10rff9vj042n6gi6gdv4z69q0y";
|
2008-02-13 16:38:33 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which ];
|
2017-03-23 01:35:44 +00:00
|
|
|
buildInputs = [gettext glib gtk2 libX11 libSM libICE]
|
|
|
|
++ optionals stdenv.isDarwin [ IOKit ];
|
2008-02-13 16:38:33 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-08 10:15:32 +00:00
|
|
|
|
2008-02-13 16:38:33 +00:00
|
|
|
# Makefiles are patched to fix references to `/usr/X11R6' and to add
|
|
|
|
# `-lX11' to make sure libX11's store path is in the RPATH.
|
|
|
|
patchPhase = ''
|
2017-08-13 21:37:05 +01:00
|
|
|
echo "patching makefiles..."
|
|
|
|
for i in Makefile src/Makefile server/Makefile
|
|
|
|
do
|
|
|
|
sed -i "$i" -e "s|/usr/X11R6|${libX11.dev}|g ; s|-lICE|-lX11 -lICE|g"
|
|
|
|
done
|
|
|
|
'';
|
2008-02-13 16:38:33 +00:00
|
|
|
|
2017-08-13 21:35:25 +01:00
|
|
|
makeFlags = [ "STRIP=-s" ];
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2008-02-13 16:38:33 +00:00
|
|
|
|
2017-08-13 21:37:05 +01:00
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Themeable process stack of system monitors";
|
2017-08-13 21:37:05 +01:00
|
|
|
longDescription = ''
|
|
|
|
GKrellM is a single process stack of system monitors which
|
|
|
|
supports applying themes to match its appearance to your window
|
|
|
|
manager, Gtk, or any other theme.
|
|
|
|
'';
|
2010-02-08 13:24:22 +00:00
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gkrellm.srcbox.net";
|
2017-03-23 01:35:44 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2018-03-17 22:17:44 +00:00
|
|
|
platforms = platforms.linux;
|
2008-02-13 16:38:33 +00:00
|
|
|
};
|
|
|
|
}
|