34 lines
1 KiB
Nix
34 lines
1 KiB
Nix
{ stdenv, fetchurl, alsaLib, faac, jack2, lame, libopus, libpulseaudio, libsamplerate, libvorbis }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "darkice-${version}";
|
|
version = "1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/darkice/${version}/darkice-${version}.tar.gz";
|
|
sha256 = "0m5jzmja7a9x15zl1634bhxrg3rccph9rkar0rmz6wlw5nzakyxk";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-alsa-prefix=${alsaLib}"
|
|
"--with-faac-prefix=${faac}"
|
|
"--with-jack-prefix=${jack2}"
|
|
"--with-lame-prefix=${lame}"
|
|
"--with-opus-prefix=${libopus}"
|
|
"--with-pulseaudio-prefix=${libpulseaudio}"
|
|
"--with-samplerate-prefix=${libsamplerate}"
|
|
"--with-vorbis-prefix=${libvorbis}"
|
|
# "--with-aacplus-prefix=${aacplus}" ### missing: aacplus
|
|
# "--with-twolame-prefix=${twolame}" ### missing: twolame
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://darkice.org/;
|
|
description = "Live audio streamer";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ ikervagyok ];
|
|
};
|
|
}
|