nixpkgs/pkgs/applications/graphics/weylus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

107 lines
2.0 KiB
Nix
Raw Normal View History

2021-08-20 15:02:11 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, makeWrapper
, dbus
, ffmpeg
, x264
, libva
2021-08-20 15:02:11 +00:00
, gst_all_1
, xorg
, libdrm
, pkg-config
, pango
, pipewire
, cmake
2023-01-21 15:52:29 +00:00
, git
, autoconf
, libtool
, typescript
, ApplicationServices
, Carbon
, Cocoa
, VideoToolbox
2021-08-20 15:02:11 +00:00
}:
rustPlatform.buildRustPackage rec {
2021-08-20 15:02:11 +00:00
pname = "weylus";
2022-05-25 07:20:59 +00:00
version = "unstable-2022-06-07";
2021-08-20 15:02:11 +00:00
src = fetchFromGitHub {
owner = "H-M-H";
repo = pname;
2022-05-25 07:20:59 +00:00
rev = "b169a6be2bf3e8d105273d92f032cca5438de53a";
sha256 = "sha256-J9eVFIfmyBviVuT1MYKb5yoacbPqOAT3A8jahWv5qw8=";
2021-08-20 15:02:11 +00:00
};
buildInputs = [
ffmpeg
x264
] ++ lib.optionals stdenv.isDarwin [
ApplicationServices
Carbon
Cocoa
VideoToolbox
] ++ lib.optionals stdenv.isLinux [
2021-08-20 15:02:11 +00:00
dbus
libva
gst_all_1.gst-plugins-base
xorg.libXext
2021-08-20 15:02:11 +00:00
xorg.libXft
xorg.libXinerama
xorg.libXcursor
xorg.libXrender
xorg.libXfixes
xorg.libXtst
2021-08-20 15:02:11 +00:00
xorg.libXrandr
xorg.libXcomposite
xorg.libXi
xorg.libXv
pango
libdrm
2021-08-20 15:02:11 +00:00
];
nativeBuildInputs = [
cmake
2023-01-21 15:52:29 +00:00
git
typescript
makeWrapper
] ++ lib.optionals stdenv.isLinux [
pkg-config
autoconf
libtool
];
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"autopilot-0.4.0" = "sha256-1DRuhAAXaIADUmXlDVr8UNbI/Ab2PYdrx9Qh0j9rTX8=";
};
};
cargoBuildFlags = [ "--features=ffmpeg-system" ];
cargoTestFlags = [ "--features=ffmpeg-system" ];
postFixup = let
GST_PLUGIN_PATH = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" [
gst_all_1.gst-plugins-base
pipewire
];
in lib.optionalString stdenv.isLinux ''
wrapProgram $out/bin/weylus --prefix GST_PLUGIN_PATH : ${GST_PLUGIN_PATH}
'';
postInstall = ''
install -vDm755 weylus.desktop $out/share/applications/weylus.desktop
'';
2021-08-20 15:02:11 +00:00
meta = with lib; {
broken = stdenv.isDarwin;
2021-08-20 15:02:11 +00:00
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; [ lom ];
2021-08-20 15:02:11 +00:00
};
}