Adding lash, session management system for GNU/Linux audio applications
svn path=/nixpkgs/trunk/; revision=26926
This commit is contained in:
parent
3cfe938b0e
commit
b3e902c1a9
|
@ -0,0 +1,34 @@
|
||||||
|
{ stdenv, fetchurl, alsaLib, gtk, jackaudio, libuuid, libxml2,
|
||||||
|
makeWrapper, pkgconfig, readline }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "lash-${version}";
|
||||||
|
version = "0.5.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://savannah/lash/${name}.tar.gz";
|
||||||
|
sha256 = "05kc4brcx8mncai0rj2gz4s4bsrsy9q8xlnaddf75i0m8jl7snhh";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./socket.patch ];
|
||||||
|
|
||||||
|
buildInputs = [ alsaLib gtk jackaudio 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 = "LASH 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
Via http://bugs.gentoo.org/show_bug.cgi?id=229603
|
||||||
|
|
||||||
|
--- lash-0.5.4/liblash/socket.c 2008-06-26 15:20:44.227064193 +0200
|
||||||
|
+++ lash-0.5.4/liblash/socket.c 2008-06-26 15:21:18.245063129 +0200
|
||||||
|
@@ -20,6 +20,11 @@
|
||||||
|
|
||||||
|
#define _POSIX_SOURCE /* addrinfo */
|
||||||
|
|
||||||
|
+#ifdef LASH_BUILD
|
||||||
|
+#define _GNU_SOURCE
|
||||||
|
+#include "config.h"
|
||||||
|
+#endif /* LASH_BUILD */
|
||||||
|
+
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
|
@ -6438,6 +6438,10 @@ let
|
||||||
|
|
||||||
larswm = callPackage ../applications/window-managers/larswm { };
|
larswm = callPackage ../applications/window-managers/larswm { };
|
||||||
|
|
||||||
|
lash = callPackage ../applications/audio/lash {
|
||||||
|
inherit (gtkLibs) gtk;
|
||||||
|
};
|
||||||
|
|
||||||
ladspaH = callPackage ../applications/audio/ladspa-plugins/ladspah.nix { };
|
ladspaH = callPackage ../applications/audio/ladspa-plugins/ladspah.nix { };
|
||||||
|
|
||||||
ladspaPlugins = callPackage ../applications/audio/ladspa-plugins {
|
ladspaPlugins = callPackage ../applications/audio/ladspa-plugins {
|
||||||
|
|
Loading…
Reference in New Issue