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

37 lines
1 KiB
Nix
Raw Normal View History

2018-11-25 00:21:11 +00:00
{ stdenv, fetchFromGitLab, perl, xkeyboard_config }:
2015-04-24 18:49:12 +00:00
stdenv.mkDerivation rec {
name = "ckbcomp-${version}";
2019-03-24 18:24:17 +00:00
version = "1.191";
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;
2019-03-24 18:24:17 +00:00
sha256 = "0wplhjadk530fqxhfnizil32rcvkcl5m2r18yskspcib53r4pmim";
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 stdenv.lib; {
description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys";
2018-11-25 00:21:11 +00:00
homepage = https://salsa.debian.org/installer-team/console-setup;
2015-04-24 18:49:12 +00:00
license = licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ dezgeg ];
2016-02-03 02:26:05 +00:00
platforms = platforms.unix;
2015-04-24 18:49:12 +00:00
};
}