lol

ocamlPackages.srt: 0.1.1 -> 0.2.1

authored by

Daniel Olsen and committed by
Vincent Laporte
ab7173f6 4ac4c526

+4 -7
+4 -7
pkgs/development/ocaml-modules/srt/default.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "srt"; 9 - version = "0.1.1"; 9 + version = "0.2.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "savonet"; 13 13 repo = "ocaml-srt"; 14 14 rev = "v${version}"; 15 - sha256 = "0xh89w4j7lljvpy2n08x6m9kw88f82snmzf23kp0gw637sjnrj6f"; 15 + sha256 = "sha256-rnM50IzeiKOrpFf79jTHp+fXn0tdx+vrLuD3kzqLh5g="; 16 16 }; 17 - 18 - useDune2 = true; 19 17 20 18 buildInputs = [ dune-configurator ]; 21 19 propagatedBuildInputs = [ posix-socket srt ]; 22 20 23 - meta = { 21 + meta = with lib; { 24 22 description = "OCaml bindings for the libsrt library"; 25 23 license = lib.licenses.gpl2Only; 26 24 inherit (src.meta) homepage; 27 - maintainers = [ lib.maintainers.vbgl ]; 25 + maintainers = with maintainers; [ vbgl dandellion ]; 28 26 }; 29 - 30 27 }