Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
perl,
|
|
xkeyboard_config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ckbcomp";
|
|
version = "1.242";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "salsa.debian.org";
|
|
owner = "installer-team";
|
|
repo = "console-setup";
|
|
rev = version;
|
|
sha256 = "sha256-5PV1Mbg7ZGQsotwnBVz8DI77Y8ULCnoTANqBLlP3YrE=";
|
|
};
|
|
|
|
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 = ''
|
|
install -Dm0555 -t $out/bin Keyboard/ckbcomp
|
|
install -Dm0444 -t $out/share/man/man1 man/ckbcomp.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys";
|
|
homepage = "https://salsa.debian.org/installer-team/console-setup";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ dezgeg ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "ckbcomp";
|
|
};
|
|
}
|