Commit 7ca84783 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.otr: 0.3.10 → 1.0.0

parent 9d42cf20
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -51,5 +51,6 @@ buildDunePackage rec {
    mainProgram = "jackline";
    license = licenses.bsd2;
    maintainers = with maintainers; [ sternenseemann ];
    broken = true; # Not compatible with mirage-crypto ≥ 1.0
  };
}
+6 −7
Original line number Diff line number Diff line
{ lib, fetchurl, buildDunePackage
, cstruct, sexplib0, mirage-crypto, mirage-crypto-pk, astring, base64
, digestif, sexplib0, mirage-crypto, mirage-crypto-pk, astring, base64
}:

buildDunePackage rec {
  pname = "otr";
  version = "0.3.10";
  version = "1.0.0";

  minimalOCamlVersion = "4.08";
  minimalOCamlVersion = "4.13";

  src = fetchurl {
    url = "https://github.com/hannesm/ocaml-otr/releases/download/v${version}/otr-v${version}.tbz";
    hash = "sha256:0dssc7p6s7z53n0mddyipjghzr8ld8bb7alaxqrx9gdpspwab1gq";
    url = "https://github.com/hannesm/ocaml-otr/releases/download/v${version}/otr-${version}.tbz";
    hash = "sha256-/CcVqLbdylB+LqpKNETkpvQ8SEAIcEFCO1MZqvdmJWU=";
  };

  propagatedBuildInputs = [ cstruct sexplib0 mirage-crypto mirage-crypto-pk
  propagatedBuildInputs = [ digestif sexplib0 mirage-crypto mirage-crypto-pk
                            astring base64 ];

  doCheck = true;
@@ -23,6 +23,5 @@ buildDunePackage rec {
    description = "Off-the-record messaging protocol, purely in OCaml";
    license = licenses.bsd2;
    maintainers = with maintainers; [ sternenseemann ];
    broken = true; # Not compatible with mirage-crypto ≥ 1.0
  };
}