Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / vorbis / default.nix
blob5bfb230e6c7c2860ed85437026b4f5d1004e39df
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, ogg, libvorbis }:
3 buildDunePackage rec {
4   pname = "vorbis";
5   version = "0.8.0";
7   duneVersion = "3";
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-vorbis";
12     rev = "v${version}";
13     hash = "sha256-iCoE7I70wAp4n4XfETVKeaob2811E97/e6144bY/nqk=";
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   };