nixpkgs/pkgs/development/ocaml-modules/srt/default.nix
Daniel Olsen f13bb7efd2 liquidsoap: 2.1.3 -> 2.1.4
ocamlPackages.srt: 0.2.2 -> 0.3.0
2023-03-30 16:22:22 +02:00

31 lines
676 B
Nix

{ lib, buildDunePackage, fetchFromGitHub
, dune-configurator
, posix-socket
, srt
}:
buildDunePackage rec {
pname = "srt";
version = "0.3.0";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-srt";
rev = "v${version}";
sha256 = "sha256-iD18bCbouBuMpuSzruDZJoYz2YyN080RK8BavUF3beY=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ posix-socket srt ];
meta = with lib; {
description = "OCaml bindings for the libsrt library";
license = lib.licenses.gpl2Only;
inherit (src.meta) homepage;
maintainers = with maintainers; [ vbgl dandellion ];
};
}