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

42 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchurl, libX11, libXt, libXext, libXpm, imake, gccmakedep
, svgSupport ? false, librsvg, glib, gdk-pixbuf, pkg-config
2016-01-03 05:03:14 +00:00
}:
assert svgSupport ->
librsvg != null && glib != null && gdk-pixbuf != null && pkg-config != null;
2016-01-03 05:03:14 +00:00
stdenv.mkDerivation rec {
name = "xxkb-1.11.1";
src = fetchurl {
url = "mirror://sourceforge/xxkb/${name}-src.tar.gz";
sha256 = "0hl1i38z9xnbgfjkaz04vv1n8xbgfg88g5z8fyzyb2hxv2z37anf";
};
2018-11-28 02:11:15 +00:00
nativeBuildInputs = [ imake gccmakedep ];
2016-01-03 05:03:14 +00:00
buildInputs = [
libX11 libXt libXext libXpm
] ++ lib.optionals svgSupport [ librsvg glib gdk-pixbuf pkg-config ];
2016-01-03 05:03:14 +00:00
outputs = [ "out" "man" ];
2021-01-15 05:42:41 +00:00
imakeFlags = lib.optionalString svgSupport "-DWITH_SVG_SUPPORT";
2016-01-03 05:03:14 +00:00
2018-11-28 02:11:15 +00:00
makeFlags = [
"BINDIR=${placeholder "out"}/bin"
"PIXMAPDIR=${placeholder "out"}/share/xxkb"
"XAPPLOADDIR=${placeholder "out"}/etc/X11/app-defaults"
"MANDIR=${placeholder "man"}/share/man"
];
2016-01-03 05:03:14 +00:00
2019-11-04 12:33:53 +00:00
installTargets = [ "install" "install.man" ];
2016-01-03 05:03:14 +00:00
meta = {
description = "A keyboard layout indicator and switcher";
homepage = "http://xxkb.sourceforge.net/";
2021-01-15 05:42:41 +00:00
license = lib.licenses.artistic2;
maintainers = with lib.maintainers; [ rasendubi ];
platforms = lib.platforms.linux;
2016-01-03 05:03:14 +00:00
};
}