ocamlPackages.otr: 0.3.10 → 1.0.0

This commit is contained in:
Vincent Laporte 2024-10-24 18:58:57 +02:00 committed by Vincent Laporte
parent 9d42cf2012
commit 7ca8478368
2 changed files with 7 additions and 7 deletions

View File

@ -51,5 +51,6 @@ buildDunePackage rec {
mainProgram = "jackline";
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
broken = true; # Not compatible with mirage-crypto ≥ 1.0
};
}

View File

@ -1,19 +1,19 @@
{ 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
};
}