openswitcher: init at 0.9.1

Blackmagic Design mixer control application and friends.
This commit is contained in:
Martin Weinelt 2024-01-02 15:38:40 +01:00
parent 01b6d2ff99
commit 22adbcaa0e
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -0,0 +1,80 @@
{ lib
, python3Packages
, fetchFromSourcehut
, desktop-file-utils
, gobject-introspection
, gtk3
, libhandy
, meson
, ninja
, pkg-config
, scdoc
, wrapGAppsHook
}:
python3Packages.buildPythonApplication rec {
pname = "openswitcher";
version = "0.9.1";
format = "other";
src = fetchFromSourcehut {
owner = "~martijnbraam";
repo = "pyatem";
rev = version;
hash = "sha256-264XqBl+1qsAc5vOxJabbkubY+F72xo06WWishVEQOI=";
};
outputs = [
"out"
"man"
];
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
desktop-file-utils
gobject-introspection
gtk3
meson
ninja
pkg-config
scdoc
wrapGAppsHook
];
dontWrapGApps = true;
buildInputs = [
gtk3
libhandy
];
propagatedBuildInputs = with python3Packages; [
# for switcher-control, bmd-setup
paho-mqtt
pyatem
pygobject3
# for atemswitch
requests
# for openswitcher-proxy
toml
];
postInstall = ''
install -Dm644 -t $out/lib/udev/rules.d/ $src/100-blackmagicdesign.rules
'';
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
description = "Blackmagic Design mixer control application";
downloadPage = "https://git.sr.ht/~martijnbraam/pyatem";
homepage = "https://openswitcher.org/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ hexa ];
};
}