about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/liblscp/default.nix
blob: 993c090299bd1a027b26569fcb631d29db70bf3d (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
25
{ lib, stdenv, fetchurl, autoconf, automake, libtool, pkg-config }:

stdenv.mkDerivation rec {
  pname = "liblscp";
  version = "0.9.4";

  src = fetchurl {
    url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.gz";
    sha256 = "sha256-8+3qHgIv32wfNHHggXID1W8M7pTqji4bHNGob3DTkho=";
  };

  nativeBuildInputs = [ autoconf automake libtool pkg-config ];

  preConfigure = "make -f Makefile.git";

  enableParallelBuilding = true;

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