keymapp: init at 1.0.7

This commit is contained in:
Jan Kaifer 2023-12-17 16:22:43 +01:00
parent 45e93e8db0
commit 7cd1467a77
No known key found for this signature in database
2 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,68 @@
{ stdenv
, lib
, fetchurl
, autoPatchelfHook
, wrapGAppsHook
, libusb1
, webkitgtk
, gtk3
, writeShellScript
, makeDesktopItem
, copyDesktopItems
}:
let
desktopItem = makeDesktopItem {
name = "keymapp";
icon = "keymapp";
desktopName = "Keymapp";
categories = [ "Settings" "HardwareSettings" ];
type = "Application";
exec = "keymapp";
};
in
stdenv.mkDerivation rec {
pname = "keymapp";
version = "1.0.7";
src = fetchurl {
url = "https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-${version}.tar.gz";
hash = "sha256-BmCLF/4wjBDxToMW0OYqI6PZwqmctgBs7nBygmJ+YOU=";
};
nativeBuildInputs = [
copyDesktopItems
autoPatchelfHook
wrapGAppsHook
];
buildInputs = [
libusb1
webkitgtk
gtk3
];
sourceRoot = ".";
installPhase = ''
runHook preInstall
install -m755 -D keymapp "$out/bin/${pname}"
install -Dm644 icon.png "$out/share/pixmaps/${pname}.png"
runHook postInstall
'';
preFixup = ''
gappsWrapperArgs+=(--set-default '__NV_PRIME_RENDER_OFFLOAD' 1)
'';
desktopItems = [ desktopItem ];
meta = with lib; {
homepage = "https://www.zsa.io/flash/";
description = "Application for ZSA keyboards";
maintainers = with lib.maintainers; [ jankaifer shawn8901 ];
platforms = platforms.linux;
license = lib.licenses.unfree;
};
}

View File

@ -9832,6 +9832,8 @@ with pkgs;
keyfuzz = callPackage ../tools/inputmethods/keyfuzz { };
keymapp = callPackage ../applications/misc/keymapp { };
keyscope = callPackage ../tools/security/keyscope {
inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation IOKit Security;
};