4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
29 lines
849 B
Nix
29 lines
849 B
Nix
{ lib, stdenv, fetchurl, alsaLib, libopus, ortp, bctoolbox }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "trx";
|
|
version = "0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.pogo.org.uk/~mark/trx/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "1jjgca92nifjhcr3n0fmpfr6f5gxlqyal2wmgdlgd7hx834r1if7";
|
|
};
|
|
|
|
# Makefile is currently missing -lbctoolbox so the build fails when linking
|
|
# the libraries. This patch adds that flag.
|
|
patches = [
|
|
./add_bctoolbox_ldlib.patch
|
|
];
|
|
|
|
buildInputs = [ alsaLib libopus ortp bctoolbox ];
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|