Merge master into staging-next
This commit is contained in:
commit
61f961f1f6
@ -18,7 +18,7 @@ in
|
||||
codec2
|
||||
js8call
|
||||
m17-cxx-demod
|
||||
alsaUtils
|
||||
alsa-utils
|
||||
netcat
|
||||
];
|
||||
serviceConfig = {
|
||||
|
@ -4,8 +4,8 @@ let
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "nix-community";
|
||||
repo = "emacs2nix";
|
||||
rev = "8454f2857252f32621b8022f797fef9b96862204";
|
||||
hash = "sha256-UHHEkY+t/IzWe8jC8bm+p275sKfnL5/v5wbwRDw6FZw=";
|
||||
rev = "9458961fc433a6c4cd91e7763f0aa1ef15f7b4aa";
|
||||
hash = "sha256-NJVKrYSF/22hrUJNJ3/znbcfHi/FtTePQ8Xzfp2eKAk=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
in
|
||||
|
@ -17,14 +17,14 @@
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "alpaca";
|
||||
version = "2.0.3";
|
||||
version = "2.0.5";
|
||||
pyproject = false; # Built with meson
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Jeffser";
|
||||
repo = "Alpaca";
|
||||
rev = version;
|
||||
hash = "sha256-CXrnPhNu/doz145rvonuBXoJQolz7qgMdn5KgVio6J4=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-BLLcU2GESyHGFJJicE42V3nMFf/YfnYsXcAOPIHuCAg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
69
pkgs/by-name/hy/hyperhdr/package.nix
Normal file
69
pkgs/by-name/hy/hyperhdr/package.nix
Normal file
@ -0,0 +1,69 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, alsa-lib
|
||||
, flatbuffers
|
||||
, libjpeg_turbo
|
||||
, mbedtls
|
||||
, mdns
|
||||
, pipewire
|
||||
, qt6Packages
|
||||
, qmqtt
|
||||
, xz
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
cmakeBool
|
||||
;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hyperhdr";
|
||||
version = "20.0.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "awawa-dev";
|
||||
repo = "HyperHDR";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-agIWtDlMwjD0sGX2ntFwqROzUsl8tY3nRbmFvvOVh4o=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
qt6Packages.wrapQtAppsHook
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DPLATFORM=linux"
|
||||
(cmakeBool "USE_SYSTEM_MQTT_LIBS" true)
|
||||
(cmakeBool "USE_SYSTEM_FLATBUFFERS_LIBS" true)
|
||||
(cmakeBool "USE_SYSTEM_MBEDTLS_LIBS" true)
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
flatbuffers
|
||||
libjpeg_turbo
|
||||
mdns
|
||||
mbedtls
|
||||
pipewire
|
||||
qmqtt
|
||||
qt6Packages.qtbase
|
||||
qt6Packages.qtserialport
|
||||
xz
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Highly optimized open source ambient lighting implementation based on modern digital video and audio stream analysis for Windows, macOS and Linux (x86 and Raspberry Pi / ARM";
|
||||
homepage = "https://github.com/awawa-dev/HyperHDR";
|
||||
changelog = "https://github.com/awawa-dev/HyperHDR/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
mainProgram = "hyperhdr";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
30
pkgs/by-name/md/mdns/package.nix
Normal file
30
pkgs/by-name/md/mdns/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mdns";
|
||||
version = "1.4.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mjansson";
|
||||
repo = "mdns";
|
||||
rev = version;
|
||||
hash = "sha256-2uv+Ibnbl6hsdjFqPhcHXbv+nIEIT4+tgtwGndpZCqo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Public domain mDNS/DNS-SD library in C";
|
||||
homepage = "https://github.com/mjansson/mdns";
|
||||
changelog = "https://github.com/mjansson/mdns/blob/${src.rev}/CHANGELOG";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
40
pkgs/by-name/qm/qmqtt/package.nix
Normal file
40
pkgs/by-name/qm/qmqtt/package.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, qt5
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qmqtt";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emqx";
|
||||
repo = "qmqtt";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-JLGwEF5e/IKzPzCQBzB710REGWbc/MW+r5AHmyYUkUI=";
|
||||
};
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"dev"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
qt5.wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qt5.qtbase
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "MQTT client for Qt";
|
||||
homepage = "https://github.com/emqx/qmqtt";
|
||||
license = licenses.epl10;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -5,16 +5,16 @@
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "superfile";
|
||||
version = "1.1.4";
|
||||
version = "1.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yorukot";
|
||||
repo = "superfile";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-ajLlXySf/YLHrwwacV5yIF8qU5pKvEoOwpDoxh49qaU=";
|
||||
hash = "sha256-/MdcfZpYr7vvPIq0rqLrPRPPU+cyp2y0EyxQPf9znwQ=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-vybe4KNj6ZhvXRTiN7e5+IhOewfK5L2jKPrcdCYGc4k=";
|
||||
vendorHash = "sha256-8WGmksKH0rmfRH6Xxd0ACl1FS7YPphG7hsIB5/o38lQ=";
|
||||
|
||||
ldflags = ["-s" "-w"];
|
||||
|
||||
|
@ -12,13 +12,13 @@
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "valkey";
|
||||
version = "7.2.6";
|
||||
version = "7.2.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "valkey-io";
|
||||
repo = "valkey";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-nWeuWlP000DHEmIBzW1UmGqN+BggCjTS5plbQ/NV6wY=";
|
||||
hash = "sha256-2kbhUg+rNuIUF/Bna6jFLI6Vhg9TlSi+OZEy6jKl2X0=";
|
||||
};
|
||||
|
||||
patches = lib.optional useSystemJemalloc ./use_system_jemalloc.patch;
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/FNA-XNA/FAudio";
|
||||
changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${version}";
|
||||
license = licenses.zlib;
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.marius851000 ];
|
||||
};
|
||||
}
|
||||
|
@ -5,18 +5,18 @@
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "universal-remote-card";
|
||||
version = "4.0.5";
|
||||
version = "4.0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Nerwyn";
|
||||
repo = "android-tv-card";
|
||||
rev = version;
|
||||
hash = "sha256-LuljLjAljDn2hCMvdGpN27EzAxPl5Vnq4kIDVZ/8GV8=";
|
||||
hash = "sha256-daxuvbjbnB1OZbvVGrA/jRe65x3MCXGFQ3o4L17Bgjk=";
|
||||
};
|
||||
|
||||
patches = [ ./dont-call-git.patch ];
|
||||
|
||||
npmDepsHash = "sha256-trFOW3iJUm7jFLhDEjKqAkCJz5Pk4LqF4M6au1LjLzc=";
|
||||
npmDepsHash = "sha256-AQYsXaZ4TyL8QjxOfub24NBxp0U6WMe+Czq+ooXwkIw=";
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
Loading…
Reference in New Issue
Block a user