62d0a320b3
This reverts commit bdb77826d98544ab37741f740dd3516023924b27. 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
28 lines
837 B
Nix
28 lines
837 B
Nix
{ stdenv, fetchurl, SDL , alsaLib, gtk, jack2, ladspaH
|
|
, ladspaPlugins, libsamplerate, libsndfile, pkgconfig, pulseaudio }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mhwaveedit-${version}";
|
|
version = "1.4.23";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.gna.org/mhwaveedit/${name}.tar.bz2";
|
|
sha256 = "010rk4mr631s440q9cfgdxx2avgzysr9aq52diwdlbq9cddifli3";
|
|
};
|
|
|
|
buildInputs =
|
|
[ SDL alsaLib gtk jack2 ladspaH libsamplerate libsndfile
|
|
pkgconfig pulseaudio
|
|
];
|
|
|
|
configureFlags = "--with-default-ladspa-path=${ladspaPlugins}/lib/ladspa";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "graphical program for editing, playing and recording sound files";
|
|
homepage = https://gna.org/projects/mhwaveedit;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|