mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
23 lines
673 B
Nix
23 lines
673 B
Nix
{ stdenv, fetchurl, alsaLib, libopus, ortp, bctoolbox }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "trx";
|
|
version = "0.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.pogo.org.uk/~mark/trx/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "1wsrkbqc090px8i9p8awz38znxjcqjb1dzjjdd8xkjmiprayjhkl";
|
|
};
|
|
|
|
buildInputs = [ alsaLib libopus ortp bctoolbox ];
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A simple toolset for broadcasting live audio using RTP/UDP and Opus";
|
|
homepage = http://www.pogo.org.uk/~mark/trx/;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.hansjoergschurr ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|