nixpkgs/pkgs/tools/audio/darkice/default.nix

38 lines
925 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config
, libjack2, alsaLib, libpulseaudio
, faac, lame, libogg, libopus, libvorbis, libsamplerate
}:
2015-05-21 17:16:26 +00:00
2016-09-12 08:30:43 +00:00
stdenv.mkDerivation rec {
pname = "darkice";
2016-08-23 13:47:53 +00:00
version = "1.3";
2015-05-21 17:16:26 +00:00
src = fetchurl {
url = "mirror://sourceforge/darkice/${version}/darkice-${version}.tar.gz";
2016-08-23 13:47:53 +00:00
sha256 = "1rlxds7ssq7nk2in4s46xws7xy9ylxsqgcz85hxjgh17lsm0y39c";
2015-05-21 17:16:26 +00:00
};
nativeBuildInputs = [ pkg-config ];
2016-09-12 08:30:43 +00:00
buildInputs = [
libopus libvorbis libogg libpulseaudio alsaLib libsamplerate libjack2 lame
];
NIX_CFLAGS_COMPILE = "-fpermissive";
2015-05-21 17:16:26 +00:00
configureFlags = [
"--with-faac-prefix=${faac}"
2016-09-12 08:30:43 +00:00
"--with-lame-prefix=${lame.lib}"
2015-05-21 17:16:26 +00:00
];
2016-08-23 13:47:53 +00:00
patches = [ ./fix-undeclared-memmove.patch ];
enableParallelBuilding = true;
2015-05-21 17:16:26 +00:00
meta = {
homepage = "http://darkice.org/";
2015-05-21 17:16:26 +00:00
description = "Live audio streamer";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ ikervagyok fpletz ];
2015-05-21 17:16:26 +00:00
};
}