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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, perl, xkeyboard_config }:
2015-04-24 21:49:12 +03:00
stdenv.mkDerivation rec {
pname = "ckbcomp";
2023-06-09 06:04:53 +03:00
version = "1.221";
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;
2023-06-09 06:04:53 +03:00
sha256 = "sha256-4/g2RR3jDeEjntEC9IySn3hHofK23zKb8+kvTcbnpTI=";
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
'';
meta = with lib; {
2015-04-24 21:49:12 +03: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 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
};
}