2017-12-09 02:32:30 +01:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
|
2012-04-20 22:39:42 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-09 02:32:30 +01:00
|
|
|
name = "libgig-${version}";
|
|
|
|
version = "4.1.0";
|
2012-04-20 22:39:42 +02:00
|
|
|
|
2017-12-09 02:32:30 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://download.linuxsampler.org/packages/${name}.tar.bz2";
|
2017-12-09 02:32:30 +01:00
|
|
|
sha256 = "02xx6bqxzgkvrawwnzrnxx1ypk244q4kpwfd58266f9ji8kq18h6";
|
2012-04-20 22:39:42 +02:00
|
|
|
};
|
|
|
|
|
2017-12-09 02:32:30 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
|
2012-04-20 22:39:42 +02:00
|
|
|
|
2017-12-09 02:32:30 +01:00
|
|
|
buildInputs = [ libsndfile libuuid ];
|
|
|
|
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-04-20 22:39:42 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.linuxsampler.org;
|
|
|
|
description = "Gigasampler file access library";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 12:08:26 +01:00
|
|
|
platforms = platforms.linux;
|
2012-04-20 22:39:42 +02:00
|
|
|
};
|
|
|
|
}
|