summary refs log tree commit diff
path: root/pkgs/development/libraries/liblscp/default.nix
blob: a1cbf9250c4961e04e343d90381fe88009864096 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig }:

stdenv.mkDerivation rec {
  name = "liblscp-svn-${version}";
  version = "2319";

  src = fetchsvn {
    url = "https://svn.linuxsampler.org/svn/liblscp/trunk";
    rev = "${version}";
    sha256 = "0jgdy9gi9n8x2pqrbll9158vhx8293lnxv8vzl0szcincslgk7hi";
  };

  buildInputs = [ autoconf automake libtool pkgconfig ];

  preConfigure = "make -f Makefile.svn";

  meta = with stdenv.lib; {
    homepage = http://www.linuxsampler.org;
    description = "LinuxSampler Control Protocol (LSCP) wrapper library";
    license = licenses.gpl2;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}