libgig: svn-2334 -> 4.1.0
This commit is contained in:
parent
11d0cccf56
commit
f46afb6353
@ -1,19 +1,21 @@
|
|||||||
{ stdenv, fetchsvn, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
|
{ stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libgig-svn-${version}";
|
name = "libgig-${version}";
|
||||||
version = "2334";
|
version = "4.1.0";
|
||||||
|
|
||||||
src = fetchsvn {
|
src = fetchurl {
|
||||||
url = "https://svn.linuxsampler.org/svn/libgig/trunk";
|
url = "http://download.linuxsampler.org/packages/${name}.tar.bz2";
|
||||||
rev = "${version}";
|
sha256 = "02xx6bqxzgkvrawwnzrnxx1ypk244q4kpwfd58266f9ji8kq18h6";
|
||||||
sha256 = "0i7sj3zm6banl5avjdxblx0mlbxxzbsbr4x5hsl2fhrdsv5dnxhc";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
|
||||||
buildInputs = [ autoconf automake libsndfile libtool libuuid ];
|
|
||||||
|
|
||||||
preConfigure = "make -f Makefile.cvs";
|
buildInputs = [ libsndfile libuuid ];
|
||||||
|
|
||||||
|
preConfigure = "make -f Makefile.svn";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.linuxsampler.org;
|
homepage = http://www.linuxsampler.org;
|
||||||
|
Loading…
Reference in New Issue
Block a user