trx: init at 2018-01-23 (#53324)
This commit is contained in:
parent
ee13b6fdd0
commit
3569ff78f6
|
@ -1750,6 +1750,11 @@
|
||||||
github = "hamhut1066";
|
github = "hamhut1066";
|
||||||
name = "Hamish Hutchings";
|
name = "Hamish Hutchings";
|
||||||
};
|
};
|
||||||
|
hansjoergschurr = {
|
||||||
|
email = "commits@schurr.at";
|
||||||
|
github = "hansjoergschurr";
|
||||||
|
name = "Hans-Jörg Schurr";
|
||||||
|
};
|
||||||
haslersn = {
|
haslersn = {
|
||||||
email = "haslersn@fius.informatik.uni-stuttgart.de";
|
email = "haslersn@fius.informatik.uni-stuttgart.de";
|
||||||
github = "haslersn";
|
github = "haslersn";
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ stdenv, fetchgit, alsaLib, libopus, ortp, bctoolbox }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "trx-unstable-${version}";
|
||||||
|
version = "2018-01-23";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "http://www.pogo.org.uk/~mark/trx.git";
|
||||||
|
rev = "66b4707a24172751a131e24d2a800496c699137f";
|
||||||
|
sha256 = "0w0960p25944b30lkc8n4lj14xgsf0fjpmxqwlz2r8wl642bqnfm";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5881,6 +5881,8 @@ in
|
||||||
|
|
||||||
trousers = callPackage ../tools/security/trousers { };
|
trousers = callPackage ../tools/security/trousers { };
|
||||||
|
|
||||||
|
trx = callPackage ../tools/audio/trx { };
|
||||||
|
|
||||||
tryton = callPackage ../applications/office/tryton { };
|
tryton = callPackage ../applications/office/tryton { };
|
||||||
|
|
||||||
trytond = callPackage ../applications/office/trytond { };
|
trytond = callPackage ../applications/office/trytond { };
|
||||||
|
|
Loading…
Reference in New Issue