f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
38 lines
950 B
Nix
38 lines
950 B
Nix
{ lib, stdenv, fetchurl, pkg-config
|
|
, libjack2, alsa-lib, libpulseaudio
|
|
, faac, lame, libogg, libopus, libvorbis, libsamplerate
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "darkice";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/rafael2k/darkice/releases/download/v${version}/darkice-${version}.tar.gz";
|
|
sha256 = "05yq7lggxygrkd76yiqby3msrgdn082p0qlvmzzv9xbw8hmyra76";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|