My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/srt/default.nix

30 lines
621 B

{ lib, buildDunePackage, fetchFromGitHub
, dune-configurator
, posix-socket
, srt
}:
buildDunePackage rec {
pname = "srt";
version = "0.1.1";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-srt";
rev = "v${version}";
sha256 = "0xh89w4j7lljvpy2n08x6m9kw88f82snmzf23kp0gw637sjnrj6f";
};
useDune2 = true;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ posix-socket srt ];
meta = {
description = "OCaml bindings for the libsrt library";
license = lib.licenses.gpl2Only;
inherit (src.meta) homepage;
maintainers = [ lib.maintainers.vbgl ];
};
}