mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 09:53:17 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitLab, perl, xkeyboard_config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ckbcomp";
|
|
version = "1.199";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "salsa.debian.org";
|
|
owner = "installer-team";
|
|
repo = "console-setup";
|
|
rev = version;
|
|
sha256 = "0jvnxmqhfmj4aywskr2bk1q5p5fl8s4k4bch89965vcwi9bplalf";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace Keyboard/ckbcomp --replace "/usr/share/X11/xkb" "${xkeyboard_config}/share/X11/xkb"
|
|
substituteInPlace Keyboard/ckbcomp --replace "rules = 'xorg'" "rules = 'base'"
|
|
'';
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -Dm0555 -t $out/bin Keyboard/ckbcomp
|
|
install -Dm0444 -t $out/share/man/man1 man/ckbcomp.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Compiles a XKB keyboard description to a keymap suitable for loadkeys";
|
|
homepage = "https://salsa.debian.org/installer-team/console-setup";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [ dezgeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|