mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
81 lines
1.4 KiB
Nix
81 lines
1.4 KiB
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromSourcehut
|
|
, desktop-file-utils
|
|
, gobject-introspection
|
|
, gtk3
|
|
, libhandy
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, scdoc
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "openswitcher";
|
|
version = "0.10.0";
|
|
format = "other";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~martijnbraam";
|
|
repo = "pyatem";
|
|
rev = version;
|
|
hash = "sha256-O+f1vVwfGJjLem25hsYE1Q1V4vzjrc0HxTBUCANCEwE=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|