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
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ stdenv, fetchurl, alsaLib, gtk, jack2, libuuid, libxml2
|
|
, makeWrapper, pkgconfig, readline }:
|
|
|
|
assert libuuid != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lash-${version}";
|
|
version = "0.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/lash/${name}.tar.gz";
|
|
sha256 = "05kc4brcx8mncai0rj2gz4s4bsrsy9q8xlnaddf75i0m8jl7snhh";
|
|
};
|
|
|
|
# http://permalink.gmane.org/gmane.linux.redhat.fedora.extras.cvs/822346
|
|
patches = [ ./socket.patch ./gcc-47.patch ];
|
|
|
|
buildInputs = [ alsaLib gtk jack2 libuuid libxml2 makeWrapper
|
|
pkgconfig readline ];
|
|
|
|
postInstall = ''
|
|
for i in lash_control lash_panel
|
|
do wrapProgram "$out/bin/$i" --prefix LD_LIBRARY_PATH ":" "${libuuid}/lib"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Linux Audio Session Handler";
|
|
longDescription = ''
|
|
Session management system for GNU/Linux audio applications.
|
|
'';
|
|
homepage = http://www.nongnu.org/lash;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|