74 lines
1.7 KiB
Nix
74 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
autoreconfHook,
|
|
glib,
|
|
dbus-glib,
|
|
desktopSupport ? "gnomeflashback",
|
|
xorg,
|
|
gtk2,
|
|
gtk3,
|
|
gnome-panel,
|
|
mate,
|
|
libxfce4util,
|
|
xfce4-panel,
|
|
}:
|
|
|
|
assert desktopSupport == "gnomeflashback" || desktopSupport == "mate" || desktopSupport == "xfce4";
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "unstable-2017-09-15";
|
|
pname = "xmonad-log-applet";
|
|
name = "${pname}-${desktopSupport}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kalj";
|
|
repo = pname;
|
|
rev = "a1b294cad2f266e4f18d9de34167fa96a0ffdba8";
|
|
sha256 = "042307grf4zvn61gnflhsj5xsjykrk9sjjsprprm4iij0qpybxcw";
|
|
};
|
|
|
|
buildInputs =
|
|
[
|
|
glib
|
|
dbus-glib
|
|
xorg.xcbutilwm
|
|
]
|
|
++ lib.optionals (desktopSupport == "gnomeflashback") [
|
|
gtk3
|
|
gnome-panel
|
|
]
|
|
++ lib.optionals (desktopSupport == "mate") [
|
|
gtk3
|
|
mate.mate-panel
|
|
]
|
|
++ lib.optionals (desktopSupport == "xfce4") [
|
|
gtk2
|
|
libxfce4util
|
|
xfce4-panel
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
configureFlags = [ "--with-panel=${desktopSupport}" ];
|
|
|
|
patches = [ ./fix-paths.patch ];
|
|
|
|
# Setup hook replaces ${prefix} in pc files so we cannot use
|
|
# --define-variable=prefix=$prefix
|
|
PKG_CONFIG_LIBXFCE4PANEL_1_0_LIBDIR = "$(out)/lib";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kalj/xmonad-log-applet";
|
|
license = licenses.bsd3;
|
|
broken = desktopSupport == "gnomeflashback" || desktopSupport == "xfce4";
|
|
description = "Applet that will display XMonad log information (${desktopSupport} version)";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|