Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

xkeysnail: remove with lib (#411387)

authored by Aleksana and committed by GitHub 58df3ddb 45999b52

Changed files
+4 -8
pkgs
by-name
xk
xkeysnail
-4
pkgs/by-name/xk/xkeysnail/emacs.py
··· 39 39 K("C-slash"): [K("C-z"), set_mark(False)], 40 40 41 41 K("C-space"): aaflip(), 42 - # K("C-space"): set_mark(True), 43 42 K("C-M-space"): with_or_set_mark(K("C-right")), 44 43 45 44 K("enter"): aaif(), 46 45 K("C-s"): [K("F3"), aaset(True)], 47 46 K("C-r"): [K("Shift-F3"), aaset(True)], 48 47 K("C-g"): [K("esc"), aaset(False)] 49 - # K("C-s"): K("F3"), 50 - # K("C-r"): K("Shift-F3"), 51 - # K("C-g"): [K("esc"), set_mark(False)] 52 48 })
+4 -4
pkgs/by-name/xk/xkeysnail/package.nix
··· 37 37 --add-flags "-q" --add-flags "$out/share/browser.py" 38 38 ''; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 description = "Yet another keyboard remapping tool for X environment"; 42 42 homepage = "https://github.com/mooz/xkeysnail"; 43 - platforms = platforms.linux; 44 - license = licenses.gpl1Only; 45 - maintainers = with maintainers; [ bb2020 ]; 43 + platforms = lib.platforms.linux; 44 + license = lib.licenses.gpl1Only; 45 + maintainers = with lib.maintainers; [ bb2020 ]; 46 46 }; 47 47 }