Adding qsampler, the frontend for LinuxSampler

svn path=/nixpkgs/trunk/; revision=33867
This commit is contained in:
Cillian de Roiste
2012-04-20 22:44:50 +00:00
parent 68f07e270a
commit 6264f9cd91
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig }:
stdenv.mkDerivation rec {
name = "liblscp-svn-${version}";
version = "2319";
src = fetchsvn {
url = "https://svn.linuxsampler.org/svn/liblscp/trunk";
rev = "${version}";
sha256 = "0jgdy9gi9n8x2pqrbll9158vhx8293lnxv8vzl0szcincslgk7hi";
};
buildInputs = [ autoconf automake libtool pkgconfig ];
preConfigure = "make -f Makefile.svn";
meta = with stdenv.lib; {
homepage = http://www.linuxsampler.org;
description = "LinuxSampler Control Protocol (LSCP) wrapper library";
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
};
}