62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
27 lines
692 B
Nix
27 lines
692 B
Nix
{ stdenv, fetchurl, SDL, jack2, mesa, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jack_oscrolloscope-${version}";
|
|
version = "0.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://das.nasophon.de/download/${name}.tar.gz";
|
|
sha256 = "1pl55in0sj7h5r06n1v91im7d18pplvhbjhjm1fdl39zwnyxiash";
|
|
};
|
|
|
|
buildInputs = [ SDL jack2 mesa pkgconfig ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv jack_oscrolloscope $out/bin/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A simple waveform viewer for JACK";
|
|
homepage = http://das.nasophon.de/jack_oscrolloscope;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|