ocamlPackages.srt: 0.3.0 -> 0.3.1 (#352262)

This commit is contained in:
Weijia Wang 2024-12-08 23:29:28 +01:00 committed by GitHub
commit 18252dd3e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,24 +7,24 @@
buildDunePackage rec { buildDunePackage rec {
pname = "srt"; pname = "srt";
version = "0.3.0"; version = "0.3.1";
minimalOCamlVersion = "4.08"; minimalOCamlVersion = "4.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "savonet"; owner = "savonet";
repo = "ocaml-srt"; repo = "ocaml-srt";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-iD18bCbouBuMpuSzruDZJoYz2YyN080RK8BavUF3beY="; hash = "sha256-5KBiHNnZ+ukaXLC90ku9PqGUUK6csDY9VqVKeeX6BQ8=";
}; };
buildInputs = [ dune-configurator ]; buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ ctypes-foreign posix-socket srt ]; propagatedBuildInputs = [ ctypes-foreign posix-socket srt ];
meta = with lib; { meta = {
description = "OCaml bindings for the libsrt library"; description = "OCaml bindings for the libsrt library";
license = lib.licenses.gpl2Only; license = lib.licenses.gpl2Plus;
inherit (src.meta) homepage; inherit (src.meta) homepage;
maintainers = with maintainers; [ vbgl dandellion ]; maintainers = with lib.maintainers; [ vbgl dandellion ];
}; };
} }