libgig: svn-2334 -> 4.1.0

This commit is contained in:
Orivej Desh 2017-12-09 01:32:30 +00:00
parent 11d0cccf56
commit f46afb6353

View File

@ -1,19 +1,21 @@
{ stdenv, fetchsvn, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
{ stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
stdenv.mkDerivation rec {
name = "libgig-svn-${version}";
version = "2334";
name = "libgig-${version}";
version = "4.1.0";
src = fetchsvn {
url = "https://svn.linuxsampler.org/svn/libgig/trunk";
rev = "${version}";
sha256 = "0i7sj3zm6banl5avjdxblx0mlbxxzbsbr4x5hsl2fhrdsv5dnxhc";
src = fetchurl {
url = "http://download.linuxsampler.org/packages/${name}.tar.bz2";
sha256 = "02xx6bqxzgkvrawwnzrnxx1ypk244q4kpwfd58266f9ji8kq18h6";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf automake libsndfile libtool libuuid ];
nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
preConfigure = "make -f Makefile.cvs";
buildInputs = [ libsndfile libuuid ];
preConfigure = "make -f Makefile.svn";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.linuxsampler.org;