kbd: 2.0.4 -> 2.4.0

This commit is contained in:
davidak
2021-04-23 16:37:37 +02:00
parent 7cdc46f4e3
commit d83b116910
2 changed files with 6 additions and 97 deletions
+6 -26
View File
@@ -1,15 +1,14 @@
{ lib, stdenv, fetchurl, autoreconfHook,
gzip, bzip2, pkg-config, flex, check,
pam, coreutils
pkg-config, flex, check, pam, coreutils
}:
stdenv.mkDerivation rec {
pname = "kbd";
version = "2.0.4";
version = "2.4.0";
src = fetchurl {
url = "mirror://kernel/linux/utils/kbd/${pname}-${version}.tar.xz";
sha256 = "124swm93dm4ca0pifgkrand3r9gvj3019d4zkfxsj9djpvv0mnaz";
sha256 = "17wvrqz2kk0w87idinhyvd31ih1dp7ldfl2yfx7ailygb0279w2m";
};
configureFlags = [
@@ -18,13 +17,8 @@ stdenv.mkDerivation rec {
"--disable-nls"
];
patches = [ ./search-paths.patch ];
postPatch =
''
# Add Neo keymap subdirectory
sed -i -e 's,^KEYMAPSUBDIRS *= *,&i386/neo ,' data/Makefile.am
# 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
@@ -33,21 +27,9 @@ stdenv.mkDerivation rec {
mv qwertz/cz{,-qwertz}.map
mv olpc/es{,-olpc}.map
mv olpc/pt{,-olpc}.map
mv dvorak/{no.map,dvorak-no.map}
mv fgGIod/trf{,-fgGIod}.map
mv colemak/{en-latin9,colemak}.map
popd
# Fix the path to gzip/bzip2.
substituteInPlace src/libkeymap/findfile.c \
--replace gzip ${gzip}/bin/gzip \
--replace bzip2 ${bzip2.bin}/bin/bzip2 \
# We get a warning in armv5tel-linux and the fuloong2f, so we
# disable -Werror in it.
${lib.optionalString (stdenv.isAarch32 || stdenv.hostPlatform.isMips) ''
sed -i s/-Werror// src/Makefile.am
''}
'';
postInstall = ''
@@ -57,16 +39,14 @@ stdenv.mkDerivation rec {
done
'';
buildInputs = [ check pam ];
nativeBuildInputs = [ autoreconfHook pkg-config flex ];
makeFlags = [ "setowner=" ];
meta = with lib; {
homepage = "ftp://ftp.altlinux.org/pub/people/legion/kbd/";
description = "Linux keyboard utilities and keyboard maps";
homepage = "https://kbd-project.org/";
description = "Linux keyboard tools and keyboard maps";
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
};
}