nixpkgs/pkgs/applications/misc/gxkb/default.nix

30 lines
909 B
Nix
Raw Normal View History

2021-06-23 18:22:04 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk3, libwnck, libxklavier
, appindicatorSupport ? true, libayatana-appindicator-gtk3
}:
stdenv.mkDerivation rec {
pname = "gxkb";
2021-05-05 03:58:36 +00:00
version = "0.9.2";
src = fetchFromGitHub {
owner = "zen-tools";
repo = "gxkb";
rev = "v${version}";
2021-05-05 03:58:36 +00:00
sha256 = "sha256-KIlosBNfGSYCgtxBuSVeSfHaLsANdLgG/P5UtAL6Hms=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2021-06-23 18:22:04 +00:00
buildInputs = [ gtk3 libwnck libxklavier ] ++ lib.optional appindicatorSupport libayatana-appindicator-gtk3;
configureFlags = lib.optional appindicatorSupport "--enable-appindicator=yes";
outputs = [ "out" "man" ];
meta = with lib; {
description = "X11 keyboard indicator and switcher";
homepage = "https://zen-tools.github.io/gxkb/";
license = licenses.gpl2Plus;
maintainers = [ maintainers.omgbebebe ];
platforms = platforms.linux;
};
}