mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
ocamlPackages.otr: 0.3.10 → 1.0.0
This commit is contained in:
parent
9d42cf2012
commit
7ca8478368
@ -51,5 +51,6 @@ buildDunePackage rec {
|
||||
mainProgram = "jackline";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ sternenseemann ];
|
||||
broken = true; # Not compatible with mirage-crypto ≥ 1.0
|
||||
};
|
||||
}
|
||||
|
@ -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
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user