hyperion-ng: init at 2.0.12

main
Alias Gram 2 years ago committed by ehmry
parent 188c2e7c8d
commit b263bfb91c
  1. 50
      pkgs/applications/video/hyperion-ng/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,50 @@
{ avahi-compat, cmake, fetchFromGitHub, flatbuffers, hidapi, lib, libcec
, libusb1, libX11, libxcb, libXrandr, mbedtls, mkDerivation, protobuf, python3
, qtbase, qtserialport, qtsvg, qtx11extras, wrapQtAppsHook }:
mkDerivation rec {
pname = "hyperion.ng";
version = "2.0.12";
src = fetchFromGitHub {
owner = "hyperion-project";
repo = pname;
rev = version;
sha256 = "sha256-J31QaWwGNhIpnZmWN9lZEI6fC0VheY5X8fGchQqtAlQ=";
};
buildInputs = [
avahi-compat
flatbuffers
hidapi
libcec
libusb1
libX11
libxcb
libXrandr
mbedtls
protobuf
python3
qtbase
qtserialport
qtsvg
qtx11extras
];
nativeBuildInputs = [ cmake wrapQtAppsHook ];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DUSE_SYSTEM_MBEDTLS_LIBS=ON"
"-DUSE_SYSTEM_FLATBUFFERS_LIBS=ON"
"-DUSE_SYSTEM_PROTO_LIBS=ON"
];
meta = with lib; {
description = "Open Source Ambilight solution";
homepage = "https://github.com/hyperion-project/hyperion.ng";
license = licenses.mit;
maintainers = with maintainers; [ algram ];
platforms = platforms.unix;
};
}

@ -26930,6 +26930,8 @@ with pkgs;
extra-packages = [ csound ];
};
hyperion-ng = libsForQt5.callPackage ../applications/video/hyperion-ng { };
hyperledger-fabric = callPackage ../tools/misc/hyperledger-fabric { };
indigenous-desktop = callPackage ../applications/networking/feedreaders/indigenous-desktop { };

Loading…
Cancel
Save