biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / ogg / default.nix
blob6c125130e81c2ed6c8460702193eeb725250065e
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, libogg }:
3 buildDunePackage rec {
4   pname = "ogg";
5   version = "0.7.4";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-ogg";
10     rev = "v${version}";
11     sha256 = "sha256-S6rJw90c//a9d63weCLuOBoQwNqbpTb+lRytvHUOZuc=";
12   };
14   minimalOCamlVersion = "4.08";
16   buildInputs = [ dune-configurator ];
17   propagatedBuildInputs = [ libogg ];
19   meta = with lib; {
20     homepage = "https://github.com/savonet/ocaml-ogg";
21     description = "Bindings to libogg";
22     license = licenses.lgpl21Only;
23     maintainers = with maintainers; [ dandellion ];
24   };