mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.4 KiB
Nix
39 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, meson, pkg-config, wayland-scanner, ninja
|
|
, cairo, libinput, pango, wayland, wayland-protocols, libxkbcommon
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wshowkeys-unstable";
|
|
version = "2021-08-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ammgws";
|
|
repo = "wshowkeys";
|
|
rev = "e8bfc78f08ebdd1316daae59ecc77e62bba68b2b";
|
|
sha256 = "sha256-/HvNCQWsXOJZeCxHWmsLlbBDhBzF7XP/SPLdDiWMDC4=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ];
|
|
buildInputs = [ cairo libinput pango wayland wayland-protocols libxkbcommon ];
|
|
|
|
meta = with lib; {
|
|
description = "Displays keys being pressed on a Wayland session";
|
|
longDescription = ''
|
|
Displays keypresses on screen on supported Wayland compositors (requires
|
|
wlr_layer_shell_v1 support).
|
|
Note: This tool requires root permissions to read input events, but these
|
|
permissions are dropped after startup. The NixOS module provides such a
|
|
setuid binary (use "programs.wshowkeys.enable = true;").
|
|
'';
|
|
homepage = "https://github.com/ammgws/wshowkeys";
|
|
license = with licenses; [ gpl3Only mit ];
|
|
# Some portions of the code are taken from Sway which is MIT licensed.
|
|
# TODO: gpl3Only or gpl3Plus (ask upstream)?
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ primeos berbiche ];
|
|
mainProgram = "wshowkeys";
|
|
};
|
|
}
|