nixpkgs/pkgs/tools/audio/darkice/default.nix
Artturin f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
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
2023-02-22 21:23:04 +02:00

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 ];
};
}