nixpkgs/pkgs/development/ocaml-modules/srt/default.nix
2022-06-07 11:45:32 +02:00

28 lines
622 B
Nix

{ lib, buildDunePackage, fetchFromGitHub
, dune-configurator
, posix-socket
, srt
}:
buildDunePackage rec {
pname = "srt";
version = "0.2.1";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-srt";
rev = "v${version}";
sha256 = "sha256-rnM50IzeiKOrpFf79jTHp+fXn0tdx+vrLuD3kzqLh5g=";
};
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 ];
};
}