about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/srt/default.nix
blob: d1e5ecd9ad5558ca974e80f4344b8b7d53f956bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, buildDunePackage, fetchFromGitHub
, dune-configurator
, posix-socket
, srt
, ctypes-foreign
}:

buildDunePackage rec {
  pname = "srt";
  version = "0.3.0";

  minimalOCamlVersion = "4.08";

  src = fetchFromGitHub {
    owner = "savonet";
    repo = "ocaml-srt";
    rev = "v${version}";
    sha256 = "sha256-iD18bCbouBuMpuSzruDZJoYz2YyN080RK8BavUF3beY=";
  };

  buildInputs = [ dune-configurator ];
  propagatedBuildInputs = [ ctypes-foreign 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 ];
  };
}