python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / audio / sratom / default.nix
blob67a66dbfe5a29940b3b32b3d79e8b56645ed24b2
1 { lib, stdenv, fetchurl, lv2, pkg-config, python3, serd, sord, wafHook }:
3 stdenv.mkDerivation rec {
4   pname = "sratom";
5   version = "0.6.8";
7   src = fetchurl {
8     url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
9     sha256 = "sha256-Ossysa3Forf6za3i4IGLzWxx8j+EoevBeBW7eg0tAt8=";
10   };
12   nativeBuildInputs = [ pkg-config wafHook python3 ];
13   buildInputs = [ lv2 serd sord ];
14   dontAddWafCrossFlags = true;
16   meta = with lib; {
17     homepage = "http://drobilla.net/software/sratom";
18     description = "A library for serialising LV2 atoms to/from RDF";
19     license = licenses.mit;
20     maintainers = [ maintainers.goibhniu ];
21     platforms = platforms.unix;
22   };