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

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

87 lines
1.6 KiB
Nix
Raw Normal View History

2021-08-20 15:02:11 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, dbus
, ffmpeg
, x264
, libva
2021-08-20 15:02:11 +00:00
, gst_all_1
, xorg
, libdrm
, pkg-config
, pango
, cmake
, autoconf
, libtool
, nodePackages
, 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";
2021-10-31 23:16:53 +00:00
version = "0.11.4";
2021-08-20 15:02:11 +00:00
src = fetchFromGitHub {
owner = "H-M-H";
repo = pname;
rev = "v${version}";
sha256 = "0gq2czxvahww97j4i3k18np29zl6wx85f8253wn3ibqrpfnklz6l";
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
nodePackages.typescript
] ++ lib.optionals stdenv.isLinux [
pkg-config
autoconf
libtool
];
cargoSha256 = "1pigmch0sy9ipsafd83b8q54xwqjxdaif363n1q8n46arq4v81j0";
cargoBuildFlags = [ "--features=ffmpeg-system" ];
cargoTestFlags = [ "--features=ffmpeg-system" ];
postInstall = ''
install -vDm755 weylus.desktop $out/share/applications/weylus.desktop
'';
2021-08-20 15:02:11 +00:00
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; [ lom ];
2021-08-20 15:02:11 +00:00
};
}