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