Files
nixpkgs/pkgs/applications/misc/ola/default.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

77 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
bison,
flex,
pkg-config,
libftdi1,
libuuid,
cppunit,
protobuf,
zlib,
avahi,
libmicrohttpd,
perl,
python3,
fetchpatch,
}:
stdenv.mkDerivation rec {
pname = "ola";
version = "0.10.9";
src = fetchFromGitHub {
owner = "OpenLightingProject";
repo = "ola";
tag = version;
hash = "sha256-8w8ZT3D/+8Pxl9z2KTXeydVxE5xiPjxZevgmMFgrblU=";
};
patches = [
# Fix build error with GCC 14 due to stricter C++20 compliance (template-id in constructors)
(fetchpatch {
url = "https://github.com/OpenLightingProject/ola/commit/d9b9c78645c578adb7c07b692842e841c48310be.patch";
hash = "sha256-BplSqQv8ztWMpiX/M3/3wvf6LsPTBglh48gHlUoM6rw=";
})
];
nativeBuildInputs = [
autoreconfHook
bison
flex
pkg-config
perl
];
buildInputs = [
# required for ola-ftdidmx plugin (support for 'dumb' FTDI devices)
libftdi1
libuuid
cppunit
protobuf
zlib
avahi
libmicrohttpd
python3
];
propagatedBuildInputs = [
(python3.pkgs.protobuf4.override { protobuf = protobuf; })
python3.pkgs.numpy
];
configureFlags = [ "--enable-python-libs" ];
enableParallelBuilding = true;
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
description = "Framework for controlling entertainment lighting equipment";
homepage = "https://www.openlighting.org/ola/";
maintainers = [ ];
license = with licenses; [
lgpl21
gpl2Plus
];
platforms = platforms.all;
};
}