Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1002 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}