2016-07-01 02:51:01 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, gzip, bzip2, pkgconfig, flex, check, pam }:
|
2007-04-04 11:18:39 +02:00
|
|
|
|
2009-06-05 19:16:14 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-07-01 02:51:01 +02:00
|
|
|
name = "kbd-${version}";
|
|
|
|
version = "2.0.3";
|
2007-04-04 11:18:39 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-07 20:26:36 +02:00
|
|
|
url = "mirror://kernel/linux/utils/kbd/${name}.tar.xz";
|
2015-08-18 20:35:50 +02:00
|
|
|
sha256 = "0ppv953gn2zylcagr4z6zg5y2x93dxrml29plypg6xgbq3hrv2bs";
|
2007-04-04 11:18:39 +02:00
|
|
|
};
|
|
|
|
|
2015-04-02 03:36:31 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-optional-progs"
|
|
|
|
"--enable-libkeymap"
|
|
|
|
"--disable-nls"
|
|
|
|
];
|
2015-03-09 02:14:19 +01:00
|
|
|
|
2016-07-01 02:51:01 +02:00
|
|
|
patches = [ ./console-fix.patch ./search-paths.patch ];
|
2015-04-07 20:26:36 +02:00
|
|
|
|
|
|
|
postPatch =
|
2012-07-24 19:10:53 +02:00
|
|
|
''
|
2016-07-01 02:51:24 +02:00
|
|
|
# Add Neo keymap subdirectory
|
2015-08-16 01:46:50 +02:00
|
|
|
sed -i -e 's,^KEYMAPSUBDIRS *= *,&i386/neo ,' data/Makefile.am
|
2015-03-09 02:14:19 +01:00
|
|
|
|
2012-07-24 19:10:53 +02:00
|
|
|
# Fix the path to gzip/bzip2.
|
2015-04-02 03:36:31 +02:00
|
|
|
substituteInPlace src/libkeymap/findfile.c \
|
2012-07-24 19:10:53 +02:00
|
|
|
--replace gzip ${gzip}/bin/gzip \
|
2015-08-21 19:35:23 +02:00
|
|
|
--replace bzip2 ${bzip2.bin}/bin/bzip2 \
|
2015-01-30 14:22:09 +01:00
|
|
|
|
2012-07-24 19:10:53 +02:00
|
|
|
# We get a warning in armv5tel-linux and the fuloong2f, so we
|
|
|
|
# disable -Werror in it.
|
|
|
|
${stdenv.lib.optionalString (stdenv.isArm || stdenv.system == "mips64el-linux") ''
|
|
|
|
sed -i s/-Werror// src/Makefile.am
|
|
|
|
''}
|
|
|
|
'';
|
2010-01-29 22:30:09 +01:00
|
|
|
|
2016-07-01 02:51:01 +02:00
|
|
|
buildInputs = [ check pam ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig flex ];
|
2015-03-09 02:14:19 +01:00
|
|
|
|
2016-07-01 02:51:01 +02:00
|
|
|
makeFlags = [ "setowner=" ];
|
2010-01-18 11:19:11 +01:00
|
|
|
|
2016-07-01 02:51:01 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-18 11:19:11 +01:00
|
|
|
homepage = ftp://ftp.altlinux.org/pub/people/legion/kbd/;
|
|
|
|
description = "Linux keyboard utilities and keyboard maps";
|
2016-07-01 02:51:01 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
licenses = licenses.gpl2Plus;
|
2010-01-18 11:19:11 +01:00
|
|
|
};
|
2007-04-04 11:18:39 +02:00
|
|
|
}
|