openswitcher: init at 0.9.1
Blackmagic Design mixer control application and friends.
This commit is contained in:
parent
01b6d2ff99
commit
22adbcaa0e
1 changed files with 80 additions and 0 deletions
80
pkgs/by-name/op/openswitcher/package.nix
Normal file
80
pkgs/by-name/op/openswitcher/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue