weylus: init at 0.11.2

This commit is contained in:
legendofmiracles 2021-08-20 09:02:11 -06:00
parent 9783779685
commit f859b89525
No known key found for this signature in database
GPG Key ID: 19B082B3DEFE5451
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib
, dbus
, stdenv
, ffmpeg
, gst_all_1
, xorg
, libdrm
, libva
, fetchzip
, copyDesktopItems
, fontconfig
, libpng
, autoPatchelfHook
}:
stdenv.mkDerivation rec {
pname = "weylus";
version = "0.11.2";
src = fetchzip {
url = "https://github.com/H-M-H/Weylus/releases/download/v${version}/linux.zip";
sha256 = "sha256-coA8qUpUgRjVBF/0LZgimx61fTTpdck/AO6e+r2uNu0=";
stripRoot = false;
};
installPhase = ''
install -Dm755 ./weylus $out/bin/weylus
copyDesktopItems ./weylus.desktop
'';
buildInputs = [
libpng
dbus
libdrm
fontconfig
libva
gst_all_1.gst-plugins-base
# autoPatchelfHook complains if these are missing, even on wayland
xorg.libXft
xorg.libXinerama
xorg.libXcursor
xorg.libXrandr
xorg.libXcomposite
xorg.libXtst
];
nativeBuildInputs = [ copyDesktopItems autoPatchelfHook ];
meta = with lib; {
description = "Use your tablet as graphic tablet/touch screen on your computer";
homepage = "https://github.com/H-M-H/Weylus";
license = with licenses; [ agpl3Only ];
maintainers = with maintainers; [ legendofmiracles ];
};
}

View File

@ -879,6 +879,8 @@ with pkgs;
weidu = callPackage ../tools/games/weidu { };
weylus = callPackage ../applications/graphics/weylus { };
gfshare = callPackage ../tools/security/gfshare { };
gobgp = callPackage ../tools/networking/gobgp { };