mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
ocamlPackages.vorbis: init at 0.8.0
This commit is contained in:
parent
d20608b489
commit
878480eec4
25
pkgs/development/ocaml-modules/vorbis/default.nix
Normal file
25
pkgs/development/ocaml-modules/vorbis/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, ogg, libvorbis }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "vorbis";
|
||||
version = "0.8.0";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "savonet";
|
||||
repo = "ocaml-vorbis";
|
||||
rev = "v${version}";
|
||||
sha256 = "1acy7yvf2y5dggzxw4vmrpdipakr98si3pw5kxw0mh7livn08al8";
|
||||
};
|
||||
|
||||
buildInputs = [ dune-configurator ];
|
||||
propagatedBuildInputs = [ ogg libvorbis ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/savonet/ocaml-vorbis";
|
||||
description = "Bindings to libvorbis";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ dandellion ];
|
||||
};
|
||||
}
|
@ -1431,6 +1431,8 @@ let
|
||||
|
||||
vlq = callPackage ../development/ocaml-modules/vlq { };
|
||||
|
||||
vorbis = callPackage ../development/ocaml-modules/vorbis { };
|
||||
|
||||
visitors = callPackage ../development/ocaml-modules/visitors { };
|
||||
|
||||
wasm = callPackage ../development/ocaml-modules/wasm { };
|
||||
|
Loading…
Reference in New Issue
Block a user