24 lines
649 B
Nix
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 ];
|
||
|
};
|
||
|
}
|