nixpkgs/pkgs/applications/audio/zita-njbridge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
814 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libjack2, zita-resampler }:
2018-09-26 04:05:56 +02:00
stdenv.mkDerivation rec {
2021-08-14 07:47:23 +02:00
version = "0.4.8";
pname = "zita-njbridge";
2018-09-26 04:05:56 +02:00
src = fetchurl {
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
2021-08-14 07:47:23 +02:00
sha256 = "sha256-EBF2oL1AfKt7/9Mm6NaIbBtlshK8M/LvuXsD+SbEeQc=";
2018-09-26 04:05:56 +02:00
};
buildInputs = [ libjack2 zita-resampler ];
preConfigure = ''
cd ./source/
'';
makeFlags = [
"PREFIX=$(out)"
"MANDIR=$(out)"
"SUFFIX=''"
];
meta = with lib; {
2018-09-26 04:05:56 +02:00
description = "command line Jack clients to transmit full quality multichannel audio over a local IP network";
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html";
2018-09-26 04:05:56 +02:00
license = licenses.gpl3;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}