summary refs log tree commit diff
path: root/pkgs/tools/X11/ckbcomp
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-04-24 21:49:12 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-06-22 15:32:42 +0300
commit4ac3bc3330ec5077830fbb01a69948041f1595bf (patch)
tree5a16a2c4272321e886fc8df168cf3fcb48b833cf /pkgs/tools/X11/ckbcomp
parent7720c7d75fac24827c365a1565a1c950c6576984 (diff)
downloadnixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.tar
nixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.tar.gz
nixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.tar.bz2
nixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.tar.lz
nixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.tar.xz
nixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.tar.zst
nixpkgs-4ac3bc3330ec5077830fbb01a69948041f1595bf.zip
ckbcomp: init at 1.129
Diffstat (limited to 'pkgs/tools/X11/ckbcomp')
-rw-r--r--pkgs/tools/X11/ckbcomp/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/X11/ckbcomp/default.nix b/pkgs/tools/X11/ckbcomp/default.nix
new file mode 100644
index 00000000000..90eaef73e16
--- /dev/null
+++ b/pkgs/tools/X11/ckbcomp/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchgit, perl, xkeyboard_config }:
+
+stdenv.mkDerivation rec {
+  name = "ckbcomp-${version}";
+  version = "1.129";
+
+  src = fetchgit {
+    url = "git://anonscm.debian.org/d-i/console-setup.git";
+    rev = "refs/tags/${version}";
+    sha256 = "1shbqnjhdmy7qwz2kwfhrdxbjw1vv98rpz1x7wlgqxr812aqcfdd";
+  };
+
+  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.linux;
+  };
+}