push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/src/FaacEncoder.cpp b/src/FaacEncoder.cpp
index 1100226..3ab1805 100644
--- a/src/FaacEncoder.cpp
+++ b/src/FaacEncoder.cpp
@@ -36,7 +36,7 @@
// compile the whole file only if faac support configured in
#ifdef HAVE_FAAC_LIB
-
+#include <string.h>
#include "Exception.h"
#include "Util.h"

View File

@@ -0,0 +1,55 @@
{
lib,
stdenv,
fetchurl,
pkg-config,
libjack2,
alsa-lib,
libpulseaudio,
faac,
lame,
libogg,
libopus,
libvorbis,
libsamplerate,
}:
stdenv.mkDerivation rec {
pname = "darkice";
version = "1.5";
src = fetchurl {
url = "https://github.com/rafael2k/darkice/releases/download/v${version}/darkice-${version}.tar.gz";
sha256 = "sha256-GLTEVzp8z+CcEJTrV5gVniqYkhBupi11OTP28qdGBY4=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libopus
libvorbis
libogg
libpulseaudio
alsa-lib
libsamplerate
libjack2
lame
];
env.NIX_CFLAGS_COMPILE = "-fpermissive";
configureFlags = [
"--with-faac-prefix=${faac}"
"--with-lame-prefix=${lame.lib}"
];
patches = [ ./fix-undeclared-memmove.patch ];
enableParallelBuilding = true;
meta = {
homepage = "http://darkice.org/";
description = "Live audio streamer";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ ikervagyok ];
};
}