mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +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.
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libX11
|
|
, xorgproto
|
|
, libXtst
|
|
, libXi
|
|
, libXext
|
|
, libXinerama
|
|
, libXrandr
|
|
, glib
|
|
, cairo
|
|
, xdotool
|
|
}:
|
|
|
|
let release = "20220825"; in
|
|
stdenv.mkDerivation {
|
|
pname = "keynav";
|
|
version = "0.${release}.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jordansissel";
|
|
repo = "keynav";
|
|
rev = "28a1ba9a045c62a9d2bc5c3474a66d96c8bf5c32";
|
|
hash = "sha256-y4ONq6fDBFhVGASvz28zlJRXfkCE/j8GDcbq/j8xvUY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libX11
|
|
xorgproto
|
|
libXtst
|
|
libXi
|
|
libXext
|
|
libXinerama
|
|
libXrandr
|
|
glib
|
|
cairo
|
|
xdotool
|
|
];
|
|
|
|
postPatch = ''
|
|
echo >>VERSION MAJOR=0
|
|
echo >>VERSION RELEASE=${release}
|
|
echo >>VERSION REVISION=0
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/keynav/doc
|
|
cp keynav $out/bin
|
|
cp keynavrc $out/share/keynav/doc
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Generate X11 mouse clicks from keyboard";
|
|
homepage = "https://www.semicomplete.com/projects/keynav/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "keynav";
|
|
};
|
|
}
|