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
56 lines
1002 B
Nix
56 lines
1002 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|