mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 14:24:40 +00:00
aee04b1bed
* ocamlPackages.cstruct: 6.0.1 -> 6.1.1 * ocamlPackages.git: 3.5.0 -> 3.9.1 * ocamlPackages.carton: 0.4.3 -> 0.4.4 * ocamlPackages.bigstringaf: 0.7.0 -> 0.9.0 * ocamlPackages.decompress: 1.4.2 -> 1.5.1 * ocamlPackages.repr: 0.5.0 -> 0.6.0 * ocamlPackages.irmin: 2.9.1 -> 3.4.1 * ligo: 0.36.0 -> 0.47.0 ocamlPackages.ringo: 0.5 → 0.9 ocamlPackages.data-encoding: 0.4.0 → 0.5.3 ocamlPackages.bls12-381: 1.1.0 -> 3.0.0 Co-authored-by: bezmuth <benkel97@protonmail.com>
103 lines
1.8 KiB
Nix
103 lines
1.8 KiB
Nix
{ lib
|
|
, fetchFromGitLab
|
|
, git
|
|
, coq
|
|
, cacert
|
|
, ocaml-crunch
|
|
}:
|
|
|
|
coq.ocamlPackages.buildDunePackage rec {
|
|
pname = "ligo";
|
|
version = "0.47.0";
|
|
src = fetchFromGitLab {
|
|
owner = "ligolang";
|
|
repo = "ligo";
|
|
rev = version;
|
|
sha256 = "sha256-VJs0pKA99mZXhipK1bSAZmgAHvYbGbjxdI2XyJYjSm0=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
# The build picks this up for ligo --version
|
|
LIGO_VERSION = version;
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
ocaml-crunch
|
|
git
|
|
coq
|
|
coq.ocamlPackages.menhir
|
|
coq.ocamlPackages.ocaml-recovery-parser
|
|
];
|
|
|
|
buildInputs = with coq.ocamlPackages; [
|
|
coq
|
|
menhir
|
|
menhirLib
|
|
qcheck
|
|
ocamlgraph
|
|
bisect_ppx
|
|
ppx_deriving
|
|
ppx_deriving_yojson
|
|
ppx_expect
|
|
ppx_import
|
|
terminal_size
|
|
ocaml-recovery-parser
|
|
yojson
|
|
getopt
|
|
core
|
|
core_unix
|
|
pprint
|
|
linenoise
|
|
dune-configurator
|
|
ctypes_stubs_js
|
|
crunch
|
|
zarith_stubs_js
|
|
pure-splitmix
|
|
|
|
# Test helpers deps
|
|
qcheck
|
|
qcheck-alcotest
|
|
alcotest-lwt
|
|
|
|
# vendored tezos' deps
|
|
ctypes
|
|
hacl-star
|
|
hacl-star-raw
|
|
lwt-canceler
|
|
ipaddr
|
|
bls12-381
|
|
bls12-381-legacy
|
|
ptime
|
|
mtime
|
|
lwt_log
|
|
ringo
|
|
ringo-lwt
|
|
secp256k1-internal
|
|
resto
|
|
resto-directory
|
|
resto-cohttp-self-serving-client
|
|
irmin-pack
|
|
ezjsonm
|
|
data-encoding
|
|
];
|
|
|
|
checkInputs = [
|
|
cacert
|
|
coq.ocamlPackages.ca-certs
|
|
];
|
|
|
|
doCheck = false; # Tests fail, but could not determine the reason
|
|
|
|
patches = [ ./ligo.patch ]; # fix for core >= 0.15.0
|
|
|
|
meta = with lib; {
|
|
homepage = "https://ligolang.org/";
|
|
downloadPage = "https://ligolang.org/docs/intro/installation";
|
|
description = "A friendly Smart Contract Language for Tezos";
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ ulrikstrid ];
|
|
};
|
|
}
|