9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
47 lines
1.5 KiB
Nix
47 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, glib, dbus-glib
|
|
, desktopSupport ? "gnomeflashback", xorg
|
|
, gtk2
|
|
, gtk3, gnome3, 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 gnome3.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";
|
|
description = "An applet that will display XMonad log information (${desktopSupport} version)";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|
|
|