kbdKeymaps: remove
dvp and neo are now included in kbd includes documentation in release notes and alias
This commit is contained in:
parent
d83b116910
commit
fabdd46503
5 changed files with 13 additions and 40 deletions
|
@ -680,6 +680,17 @@ environment.systemPackages = [
|
|||
All CUDA toolkit versions prior to CUDA 10 have been removed.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
The <package>kbdKeymaps</package> package was removed since dvp and neo
|
||||
are now included in <package>kbd</package>.
|
||||
|
||||
If you want to use the Programmer Dvorak Keyboard Layout, you have to use
|
||||
<literal>dvorak-programmer</literal> in <option>console.keyMap</option>
|
||||
now instead of <literal>dvp</literal>.
|
||||
In <option>services.xserver.xkbVariant</option> it's still <literal>dvp</literal>.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -82,8 +82,7 @@ in
|
|||
|
||||
packages = mkOption {
|
||||
type = types.listOf types.package;
|
||||
default = with pkgs.kbdKeymaps; [ dvp neo ];
|
||||
defaultText = "with pkgs.kbdKeymaps; [ dvp neo ]";
|
||||
default = [ ];
|
||||
description = ''
|
||||
List of additional packages that provide console fonts, keymaps and
|
||||
other resources for virtual consoles use.
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
{ stdenv, lib, fetchurl, gzip }:
|
||||
|
||||
{
|
||||
dvp = stdenv.mkDerivation rec {
|
||||
pname = "dvp";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://kaufmann.no/downloads/linux/dvp-${lib.replaceStrings ["."] ["_"] version}.map.gz";
|
||||
sha256 = "0e859211cfe16a18a3b9cbf2ca3e280a23a79b4e40b60d8d01d0fde7336b6d50";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gzip ];
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out/share/keymaps/i386/dvorak
|
||||
gzip -c -d $src > $out/share/keymaps/i386/dvorak/dvp.map
|
||||
'';
|
||||
};
|
||||
|
||||
neo = stdenv.mkDerivation {
|
||||
pname = "neo";
|
||||
version = "2476";
|
||||
|
||||
src = fetchurl {
|
||||
name = "neo.map";
|
||||
url = "https://raw.githubusercontent.com/neo-layout/neo-layout/"
|
||||
+ "a0dee06fed824abfad658b7f10e6d907b270be0a/linux/console/neo.map";
|
||||
sha256 = "19mfrd31vzpsjiwc7pshxm0b0sz5dd17xrz6k079cy4im1vf0r4g";
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
install -D $src $out/share/keymaps/i386/neo/neo.map
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -338,6 +338,7 @@ mapAliases ({
|
|||
kodiPlainWayland = kodi-wayland;
|
||||
julia_07 = throw "julia_07 is deprecated in favor of julia_10 LTS"; # added 2020-09-15
|
||||
julia_11 = throw "julia_11 is deprecated in favor of latest Julia version"; # added 2020-09-15
|
||||
kbdKeymaps = throw "kbdKeymaps is not needed anymore since dvp and neo are now part of kbd"; # added 2021-04-11
|
||||
kdeconnect = plasma5Packages.kdeconnect-kde; # added 2020-10-28
|
||||
kdiff3-qt5 = kdiff3; # added 2017-02-18
|
||||
keepass-keefox = keepass-keepassrpc; # backwards compatibility alias, added 2018-02
|
||||
|
|
|
@ -19766,8 +19766,6 @@ in
|
|||
|
||||
kbd = callPackage ../os-specific/linux/kbd { };
|
||||
|
||||
kbdKeymaps = callPackage ../os-specific/linux/kbd/keymaps.nix { };
|
||||
|
||||
kbdlight = callPackage ../os-specific/linux/kbdlight { };
|
||||
|
||||
kmscon = callPackage ../os-specific/linux/kmscon { };
|
||||
|
|
Loading…
Reference in a new issue