1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00
nixpkgs/pkgs/applications/misc/ola/default.nix

45 lines
1 KiB
Nix
Raw Normal View History

2020-06-21 23:37:34 +01:00
{ stdenv
, fetchFromGitHub
, autoreconfHook
, bison
, flex
, pkgconfig
, libuuid
, cppunit
, protobuf
, zlib
, avahi
, libmicrohttpd
, perl
, python3
2017-07-19 18:00:38 +01:00
}:
stdenv.mkDerivation rec {
pname = "ola";
2020-06-21 23:37:34 +01:00
version = "unstable-2020-07-17";
2017-07-19 18:00:38 +01:00
src = fetchFromGitHub {
owner = "OpenLightingProject";
repo = "ola";
2020-06-21 23:37:34 +01:00
rev = "e2cd699c7792570500578fd092fb6bfb3d511023"; # HEAD of "0.10" branch
sha256 = "17a3z3zhx00rjk58icd3zlqfw3753f3y8bwy2sza0frdim09lqr4";
2017-07-19 18:00:38 +01:00
};
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig perl ];
2020-06-21 23:37:34 +01:00
buildInputs = [ libuuid cppunit protobuf zlib avahi libmicrohttpd python3 ];
propagatedBuildInputs = [
2020-06-21 23:37:34 +01:00
python3.pkgs.protobuf
python3.pkgs.numpy
];
2017-07-19 18:00:38 +01:00
configureFlags = [ "--enable-python-libs" ];
meta = with stdenv.lib; {
description = "A framework for controlling entertainment lighting equipment.";
2020-06-21 23:37:34 +01:00
homepage = "https://www.openlighting.org/ola/";
maintainers = with maintainers; [ globin ];
license = with licenses; [ lgpl21 gpl2Plus ];
2017-07-19 18:00:38 +01:00
platforms = platforms.all;
};
}