Files
nixpkgs/pkgs/by-name/op/openswitcher/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

85 lines
1.5 KiB
Nix

{
lib,
python3Packages,
fetchFromSourcehut,
desktop-file-utils,
gobject-introspection,
gtk3,
libhandy,
meson,
ninja,
pkg-config,
scdoc,
wrapGAppsHook3,
udevCheckHook,
}:
python3Packages.buildPythonApplication rec {
pname = "openswitcher";
version = "0.13.0";
format = "other";
src = fetchFromSourcehut {
owner = "~martijnbraam";
repo = "pyatem";
rev = version;
hash = "sha256-eEn09e+ZED4DGEWTUou9CRgazngHIXZv51CLhX9YuBI=";
};
outputs = [
"out"
"man"
];
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
desktop-file-utils
gobject-introspection
gtk3
meson
ninja
pkg-config
scdoc
wrapGAppsHook3
udevCheckHook
];
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 ];
mainProgram = "switcher-control";
};
}