2021-04-13 06:29:11 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, nixosTests
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
, flex
|
|
|
|
, check
|
|
|
|
, pam
|
|
|
|
, coreutils
|
2021-05-30 15:59:40 +01:00
|
|
|
, gzip
|
|
|
|
, bzip2
|
|
|
|
, xz
|
|
|
|
, zstd
|
2017-07-29 23:21:44 +01:00
|
|
|
}:
|
2007-04-04 10:18:39 +01:00
|
|
|
|
2009-06-05 18:16:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "kbd";
|
2021-04-11 01:04:08 +01:00
|
|
|
version = "2.4.0";
|
2007-04-04 10:18:39 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://kernel/linux/utils/kbd/${pname}-${version}.tar.xz";
|
2021-04-11 01:04:08 +01:00
|
|
|
sha256 = "17wvrqz2kk0w87idinhyvd31ih1dp7ldfl2yfx7ailygb0279w2m";
|
2007-04-04 10:18:39 +01:00
|
|
|
};
|
|
|
|
|
2015-04-02 02:36:31 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-optional-progs"
|
|
|
|
"--enable-libkeymap"
|
|
|
|
"--disable-nls"
|
|
|
|
];
|
2015-03-09 01:14:19 +00:00
|
|
|
|
2021-07-19 21:10:17 +01:00
|
|
|
patches = [
|
|
|
|
./search-paths.patch
|
|
|
|
];
|
|
|
|
|
2015-04-07 19:26:36 +01:00
|
|
|
postPatch =
|
2012-07-24 18:10:53 +01:00
|
|
|
''
|
2018-10-09 00:21:28 +01:00
|
|
|
# Renaming keymaps with name clashes, because loadkeys just picks
|
|
|
|
# the first keymap it sees. The clashing names lead to e.g.
|
|
|
|
# "loadkeys no" defaulting to a norwegian dvorak map instead of
|
|
|
|
# the much more common qwerty one.
|
|
|
|
pushd data/keymaps/i386
|
|
|
|
mv qwertz/cz{,-qwertz}.map
|
|
|
|
mv olpc/es{,-olpc}.map
|
|
|
|
mv olpc/pt{,-olpc}.map
|
|
|
|
mv fgGIod/trf{,-fgGIod}.map
|
|
|
|
mv colemak/{en-latin9,colemak}.map
|
|
|
|
popd
|
2021-05-30 15:59:40 +01:00
|
|
|
|
|
|
|
# Fix paths to decompressors. Trailing space to avoid replacing `xz` in `".xz"`.
|
|
|
|
substituteInPlace src/libkbdfile/kbdfile.c \
|
|
|
|
--replace 'gzip ' '${gzip}/bin/gzip ' \
|
|
|
|
--replace 'bzip2 ' '${bzip2.bin}/bin/bzip2 ' \
|
|
|
|
--replace 'xz ' '${xz.bin}/bin/xz ' \
|
|
|
|
--replace 'zstd ' '${zstd.bin}/bin/zstd '
|
2012-07-24 18:10:53 +01:00
|
|
|
'';
|
2010-01-29 21:30:09 +00:00
|
|
|
|
2017-07-29 23:21:44 +01:00
|
|
|
postInstall = ''
|
2017-07-29 23:33:26 +01:00
|
|
|
for i in $out/bin/unicode_{start,stop}; do
|
|
|
|
substituteInPlace "$i" \
|
|
|
|
--replace /usr/bin/tty ${coreutils}/bin/tty
|
|
|
|
done
|
2017-07-29 23:21:44 +01:00
|
|
|
'';
|
|
|
|
|
2016-07-01 01:51:01 +01:00
|
|
|
buildInputs = [ check pam ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config flex ];
|
2015-03-09 01:14:19 +00:00
|
|
|
|
2021-05-30 19:37:14 +01:00
|
|
|
passthru.tests = {
|
2021-07-19 21:10:17 +01:00
|
|
|
inherit (nixosTests) keymap kbd-setfont-decompress kbd-update-search-paths-patch;
|
2021-05-30 19:37:14 +01:00
|
|
|
};
|
2021-04-11 04:25:53 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-04-11 01:04:08 +01:00
|
|
|
homepage = "https://kbd-project.org/";
|
|
|
|
description = "Linux keyboard tools and keyboard maps";
|
2016-07-01 01:51:01 +01:00
|
|
|
platforms = platforms.linux;
|
2017-04-29 05:24:34 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2021-04-13 06:30:11 +01:00
|
|
|
maintainers = with maintainers; [ davidak ];
|
2010-01-18 10:19:11 +00:00
|
|
|
};
|
2007-04-04 10:18:39 +01:00
|
|
|
}
|