python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / vorbis / default.nix
blobf33182e5fc192622c834896bd8069c98cb5ee232
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, ogg, libvorbis }:
3 buildDunePackage rec {
4   pname = "vorbis";
5   version = "0.8.0";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-vorbis";
12     rev = "v${version}";
13     sha256 = "1acy7yvf2y5dggzxw4vmrpdipakr98si3pw5kxw0mh7livn08al8";
14   };
16   buildInputs = [ dune-configurator ];
17   propagatedBuildInputs = [ ogg libvorbis ];
19   meta = with lib; {
20     homepage = "https://github.com/savonet/ocaml-vorbis";
21     description = "Bindings to libvorbis";
22     license = licenses.gpl2Only;
23     maintainers = with maintainers; [ dandellion ];
24   };