blob: 569ed3597ea62d03bf06cfca962bcf8ae3263670 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{ 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 ];
};
}
|