2017-12-09 01:32:30 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
|
2012-04-20 21:39:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libgig";
|
2019-08-04 16:31:27 +01:00
|
|
|
version = "4.2.0";
|
2012-04-20 21:39:42 +01:00
|
|
|
|
2017-12-09 01:32:30 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
|
2019-08-04 16:31:27 +01:00
|
|
|
sha256 = "1zs5yy124bymfyapsnljr6rv2lnn5inwchm0xnwiw44b2d39l8hn";
|
2012-04-20 21:39:42 +01:00
|
|
|
};
|
|
|
|
|
2017-12-09 01:32:30 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
|
2012-04-20 21:39:42 +01:00
|
|
|
|
2017-12-09 01:32:30 +00:00
|
|
|
buildInputs = [ libsndfile libuuid ];
|
|
|
|
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-04-20 21:39:42 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.linuxsampler.org";
|
2012-04-20 21:39:42 +01:00
|
|
|
description = "Gigasampler file access library";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-04-20 21:39:42 +01:00
|
|
|
};
|
|
|
|
}
|