nixpkgs/pkgs/tools/X11/ckbcomp/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, perl, xkeyboard_config }:
2015-04-24 18:49:12 +00:00
stdenv.mkDerivation rec {
pname = "ckbcomp";
2021-08-10 00:07:48 +00:00
version = "1.205";
2015-04-24 18:49:12 +00:00
2018-11-25 00:21:11 +00:00
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "installer-team";
repo = "console-setup";
rev = version;
2021-08-10 00:07:48 +00:00
sha256 = "sha256-agE+Bspw1JL1R1HvNeWW4xr2m0+H83f/9jk6EjQwxWk=";
2015-04-24 18:49:12 +00:00
};
buildInputs = [ perl ];
patchPhase = ''
substituteInPlace Keyboard/ckbcomp --replace "/usr/share/X11/xkb" "${xkeyboard_config}/share/X11/xkb"
substituteInPlace Keyboard/ckbcomp --replace "rules = 'xorg'" "rules = 'base'"
'';
dontBuild = true;
installPhase = ''
2018-11-25 00:21:11 +00:00
install -Dm0555 -t $out/bin Keyboard/ckbcomp
install -Dm0444 -t $out/share/man/man1 man/ckbcomp.1
2015-04-24 18:49:12 +00:00
'';
meta = with lib; {
2015-04-24 18:49:12 +00:00
description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys";
homepage = "https://salsa.debian.org/installer-team/console-setup";
2015-04-24 18:49:12 +00:00
license = licenses.gpl2Plus;
2021-01-15 09:19:50 +00:00
maintainers = with lib.maintainers; [ dezgeg ];
2016-02-03 02:26:05 +00:00
platforms = platforms.unix;
2015-04-24 18:49:12 +00:00
};
}