summary refs log tree commit diff
path: root/pkgs/tools/X11/ckbcomp/default.nix
blob: 87161a6442a424976ee9bfedff638121b36d0b3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchgit, perl, xkeyboard_config }:

stdenv.mkDerivation rec {
  name = "ckbcomp-${version}";
  version = "1.133";

  src = fetchgit {
    url = "git://anonscm.debian.org/d-i/console-setup.git";
    rev = "refs/tags/${version}";
    sha256 = "0za7y5v5rsl9da67rfiwzyfaia4xgnavqdadq0l6v8blc2kcsxr7";
  };

  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 = ''
    mkdir -p "$out"/bin
    cp Keyboard/ckbcomp "$out"/bin/
    mkdir -p "$out"/share/man/man1
    cp man/ckbcomp.1 "$out"/share/man/man1
  '';

  meta = with stdenv.lib; {
    description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys";
    homepage = http://anonscm.debian.org/cgit/d-i/console-setup.git;
    license = licenses.gpl2Plus;
    maintainers = with stdenv.lib.maintainers; [ dezgeg ];
    platforms = platforms.unix;
  };
}