at 18.03-beta 25 lines 706 B view raw
1{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 name = "liblscp-${version}"; 5 version = "0.6.0"; 6 7 src = fetchurl { 8 url = "https://download.linuxsampler.org/packages/${name}.tar.gz"; 9 sha256 = "1rl7ssdzj0z3658yvdijmb27n2lcwmplx4qxg5mwrm07pvs7i75k"; 10 }; 11 12 nativeBuildInputs = [ autoconf automake libtool pkgconfig ]; 13 14 preConfigure = "make -f Makefile.git"; 15 16 enableParallelBuilding = true; 17 18 meta = with stdenv.lib; { 19 homepage = http://www.linuxsampler.org; 20 description = "LinuxSampler Control Protocol (LSCP) wrapper library"; 21 license = licenses.gpl2; 22 maintainers = [ maintainers.goibhniu ]; 23 platforms = platforms.linux; 24 }; 25}