nixpkgs/pkgs/development/libraries/libgig/default.nix
Cillian de Roiste 45ac14621a Adding LinuxSampler and dependencies, using SVN version for SFZ support
svn path=/nixpkgs/trunk/; revision=33865
2012-04-20 20:39:42 +00:00

24 lines
649 B
Nix

{ 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 ];
};
}