liblscp: svn-2319 -> 0.5.8

This commit is contained in:
Orivej Desh 2017-12-09 01:34:24 +00:00
parent f46afb6353
commit 687175c931
2 changed files with 12 additions and 10 deletions

View File

@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
preConfigure = "make -f Makefile.svn"; 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;
description = "Graphical frontend to LinuxSampler"; description = "Graphical frontend to LinuxSampler";

View File

@ -1,19 +1,19 @@
{ stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig }: { stdenv, fetchurl, autoconf, automake, libtool, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "liblscp-svn-${version}"; name = "liblscp-${version}";
version = "2319"; version = "0.5.8";
src = fetchsvn { src = fetchurl {
url = "https://svn.linuxsampler.org/svn/liblscp/trunk"; url = "http://download.linuxsampler.org/packages/${name}.tar.gz";
rev = "${version}"; sha256 = "00cfafkw1n80sdjwm9zdsg5vx287wqpgpbajd3zmiz415wzr84dn";
sha256 = "0jgdy9gi9n8x2pqrbll9158vhx8293lnxv8vzl0szcincslgk7hi";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
buildInputs = [ autoconf automake libtool ];
preConfigure = "make -f Makefile.svn"; preConfigure = "make -f Makefile.git";
enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.linuxsampler.org; homepage = http://www.linuxsampler.org;