python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libgig / default.nix
blob26e3b46d55104e530333cbebaf2793c1175bfe45
1 { lib, stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkg-config, libuuid }:
3 stdenv.mkDerivation rec {
4   pname = "libgig";
5   version = "4.3.0";
7   src = fetchurl {
8     url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
9     sha256 = "sha256-oG0Jh4eAxsGd2NucM1RNU6kzV/niexSpg6qrpo//p5Q=";
10   };
12   nativeBuildInputs = [ autoconf automake libtool pkg-config ];
14   buildInputs = [ libsndfile libuuid ];
16   preConfigure = "make -f Makefile.svn";
18   enableParallelBuilding = true;
20   meta = with lib; {
21     homepage = "http://www.linuxsampler.org";
22     description = "Gigasampler file access library";
23     license = licenses.gpl2;
24     maintainers = [ maintainers.goibhniu ];
25     platforms = platforms.linux;
26   };