Skip to content

Commit

Permalink
ola: init at 0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Aug 4, 2017
1 parent 3badb04 commit 5b3e403
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/applications/misc/ola/default.nix
@@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig
, libuuid, cppunit, protobuf, zlib, avahi, libmicrohttpd
, perl, python3, python3Packages
}:

stdenv.mkDerivation rec {
name = "ola-${version}";
version = "0.10.4";

src = fetchFromGitHub {
owner = "OpenLightingProject";
repo = "ola";
rev = version;
sha256 = "1skb3dwpmsfdr8mp3rs80jmsr1bf78270d9bnd8h0pv8bkb8zvim";
};

nativeBuildInputs = [ autoreconfHook bison flex pkgconfig perl ];
buildInputs = [ libuuid cppunit protobuf zlib avahi libmicrohttpd python3 ];
propagatedBuildInputs = with python3Packages; [ protobuf3_2 numpy ];

configureFlags = [ "--enable-python-libs" ];

meta = with stdenv.lib; {
description = "A framework for controlling entertainment lighting equipment.";
maintainers = [ maintainers.globin ];
licenses = with licenses; [ lgpl21 gpl2Plus ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -3507,6 +3507,8 @@ with pkgs;

oh-my-zsh = callPackage ../shells/oh-my-zsh { };

ola = callPackage ../applications/misc/ola { };

opencc = callPackage ../tools/text/opencc { };

opencl-info = callPackage ../tools/system/opencl-info { };
Expand Down

0 comments on commit 5b3e403

Please sign in to comment.