Adding LinuxSampler and dependencies, using SVN version for SFZ support
svn path=/nixpkgs/trunk/; revision=33865
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchsvn, autoconf, automake, libsndfile, libtool, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libgig-svn-${version}";
|
||||
version = "2334";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "https://svn.linuxsampler.org/svn/libgig/trunk";
|
||||
rev = "${version}";
|
||||
sha256 = "0i7sj3zm6banl5avjdxblx0mlbxxzbsbr4x5hsl2fhrdsv5dnxhc";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake libsndfile libtool pkgconfig ];
|
||||
|
||||
preConfigure = "make -f Makefile.cvs";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.linuxsampler.org;
|
||||
description = "Gigasampler file access library";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user