python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / liblscp / default.nix
blob993c090299bd1a027b26569fcb631d29db70bf3d
1 { lib, stdenv, fetchurl, autoconf, automake, libtool, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "liblscp";
5   version = "0.9.4";
7   src = fetchurl {
8     url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.gz";
9     sha256 = "sha256-8+3qHgIv32wfNHHggXID1W8M7pTqji4bHNGob3DTkho=";
10   };
12   nativeBuildInputs = [ autoconf automake libtool pkg-config ];
14   preConfigure = "make -f Makefile.git";
16   enableParallelBuilding = true;
18   meta = with 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   };