python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / audio / raul / default.nix
blobc200d4ab79c524600de69544b6a84b59f1e9d5ea
1 { lib, stdenv, fetchgit, boost, gtk2, pkg-config, python3, wafHook }:
3 stdenv.mkDerivation rec {
4   pname = "raul";
5   version = "unstable-2019-12-09";
6   name = "${pname}-${version}";
8   src = fetchgit {
9     url = "https://gitlab.com/drobilla/raul.git";
10     fetchSubmodules = true;
11     rev = "e87bb398f025912fb989a09f1450b838b251aea1";
12     sha256 = "1z37jb6ghc13b8nv8a8hcg669gl8vh4ni9djvfgga9vcz8rmcg8l";
13   };
15   nativeBuildInputs = [ pkg-config wafHook python3 ];
16   buildInputs = [ boost gtk2 ];
18   strictDeps = true;
20   meta = with lib; {
21     description = "A C++ utility library primarily aimed at audio/musical applications";
22     homepage = "http://drobilla.net/software/raul";
23     license = licenses.gpl3;
24     maintainers = [ maintainers.goibhniu ];
25     platforms = platforms.unix;
26   };