2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchFromGitLab, perl, xkeyboard_config }:
|
2015-04-24 21:49:12 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "ckbcomp";
|
2022-12-16 14:43:19 +03:00
|
|
|
version = "1.212";
|
2015-04-24 21:49:12 +03:00
|
|
|
|
2018-11-25 03:21:11 +03:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "salsa.debian.org";
|
|
|
|
owner = "installer-team";
|
|
|
|
repo = "console-setup";
|
|
|
|
rev = version;
|
2022-12-16 14:43:19 +03:00
|
|
|
sha256 = "sha256-ePWWBbMLXWZABztKeVV0nIfLfyO+9oBiSRNShbmOObw=";
|
2015-04-24 21:49:12 +03: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 03:21:11 +03:00
|
|
|
install -Dm0555 -t $out/bin Keyboard/ckbcomp
|
|
|
|
install -Dm0444 -t $out/share/man/man1 man/ckbcomp.1
|
2015-04-24 21:49:12 +03:00
|
|
|
'';
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2015-04-24 21:49:12 +03:00
|
|
|
description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://salsa.debian.org/installer-team/console-setup";
|
2015-04-24 21:49:12 +03:00
|
|
|
license = licenses.gpl2Plus;
|
2021-01-15 12:19:50 +03:00
|
|
|
maintainers = with lib.maintainers; [ dezgeg ];
|
2016-02-03 05:26:05 +03:00
|
|
|
platforms = platforms.unix;
|
2015-04-24 21:49:12 +03:00
|
|
|
};
|
|
|
|
}
|