nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "liblscp-svn-${version}";
5 version = "2319";
6
7 src = fetchsvn {
8 url = "https://svn.linuxsampler.org/svn/liblscp/trunk";
9 rev = "${version}";
10 sha256 = "0jgdy9gi9n8x2pqrbll9158vhx8293lnxv8vzl0szcincslgk7hi";
11 };
12
13 buildInputs = [ autoconf automake libtool pkgconfig ];
14
15 preConfigure = "make -f Makefile.svn";
16
17 meta = with stdenv.lib; {
18 homepage = http://www.linuxsampler.org;
19 description = "LinuxSampler Control Protocol (LSCP) wrapper library";
20 license = licenses.gpl2;
21 maintainers = [ maintainers.goibhniu ];
22 platforms = platforms.linux;
23 };
24}