30 lines
933 B
Nix
30 lines
933 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig
|
|
, libuuid, cppunit, protobuf3_1, zlib, avahi, libmicrohttpd
|
|
, perl, python3, python3Packages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ola-${version}";
|
|
version = "0.10.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenLightingProject";
|
|
repo = "ola";
|
|
rev = version;
|
|
sha256 = "1296iiq8fxbvv8sghpj3nambfmixps48dd77af0gpwf7hmjjm8al";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig perl ];
|
|
buildInputs = [ libuuid cppunit protobuf3_1 zlib avahi libmicrohttpd python3 ];
|
|
propagatedBuildInputs = [ python3Packages.protobuf3_1 python3Packages.numpy ];
|
|
|
|
configureFlags = [ "--enable-python-libs" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A framework for controlling entertainment lighting equipment.";
|
|
maintainers = [ maintainers.globin ];
|
|
license = with licenses; [ lgpl21 gpl2Plus ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|