mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, bison
|
|
, flex
|
|
, pkgconfig
|
|
, libuuid
|
|
, cppunit
|
|
, protobuf
|
|
, zlib
|
|
, avahi
|
|
, libmicrohttpd
|
|
, perl
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ola";
|
|
version = "unstable-2020-07-17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenLightingProject";
|
|
repo = "ola";
|
|
rev = "e2cd699c7792570500578fd092fb6bfb3d511023"; # HEAD of "0.10" branch
|
|
sha256 = "17a3z3zhx00rjk58icd3zlqfw3753f3y8bwy2sza0frdim09lqr4";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig perl ];
|
|
buildInputs = [ libuuid cppunit protobuf zlib avahi libmicrohttpd python3 ];
|
|
propagatedBuildInputs = [
|
|
python3.pkgs.protobuf
|
|
python3.pkgs.numpy
|
|
];
|
|
|
|
configureFlags = [ "--enable-python-libs" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "A framework for controlling entertainment lighting equipment";
|
|
homepage = "https://www.openlighting.org/ola/";
|
|
maintainers = with maintainers; [ globin ];
|
|
license = with licenses; [ lgpl21 gpl2Plus ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|