f6ee57b67f
svn path=/nixpkgs/trunk/; revision=10469
23 lines
641 B
Nix
23 lines
641 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xkeyboard-config-${version}";
|
|
|
|
src = fetchurl {
|
|
url = http://xlibs.freedesktop.org/xkbdesc/xkeyboard-config-1.2.tar.bz2;
|
|
sha256 = "1xr7vfgabgyggnkjb56a0bd39yxjhyrldcdsq9pqnw3izfb6i1b4";
|
|
};
|
|
buildInputs = [perl perlXMLParser xkbcomp gettext];
|
|
|
|
ICONV = "iconv";
|
|
|
|
preConfigure = "
|
|
configureFlags=\"--with-xkb-base=$out/etc/X11/xkb -with-xkb-rules-symlink=xorg,xfree86\"
|
|
";
|
|
|
|
postInstall = ''
|
|
rm ''${out}/etc/X11/xkb/compiled || true;
|
|
cat ${./level3-deadkeys-us-intl} | sed -e 's/altgr-intl/altgr-intl-rich/g' >> $out/etc/X11/xkb/symbols/us
|
|
'';
|
|
}
|