python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / development / ocaml-modules / vorbis / default.nix
blob968c51f5e3736b15ad283b29f18122c23868cf0f
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   dune-configurator,
6   ogg,
7   libvorbis,
8 }:
10 buildDunePackage rec {
11   pname = "vorbis";
12   version = "0.8.0";
14   duneVersion = "3";
16   src = fetchFromGitHub {
17     owner = "savonet";
18     repo = "ocaml-vorbis";
19     rev = "v${version}";
20     hash = "sha256-iCoE7I70wAp4n4XfETVKeaob2811E97/e6144bY/nqk=";
21   };
23   buildInputs = [ dune-configurator ];
24   propagatedBuildInputs = [
25     ogg
26     libvorbis
27   ];
29   meta = with lib; {
30     homepage = "https://github.com/savonet/ocaml-vorbis";
31     description = "Bindings to libvorbis";
32     license = licenses.gpl2Only;
33     maintainers = with maintainers; [ dandellion ];
34   };