feat (shells/why3-dev): menhir-lsp
This commit is contained in:
parent
ffa3c9697d
commit
23aaa96938
2 changed files with 47 additions and 0 deletions
45
shells/why3-dev/menhir-lsp.nix
Normal file
45
shells/why3-dev/menhir-lsp.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
menhirLib,
|
||||
menhirSdk,
|
||||
stdune,
|
||||
re,
|
||||
menhir,
|
||||
lwt_ppx,
|
||||
containers,
|
||||
linol-lwt,
|
||||
merlin-lib,
|
||||
visitors,
|
||||
# ocamlPackages,
|
||||
fetchFromGitHub,
|
||||
buildDunePackage,
|
||||
...
|
||||
}:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "menhir-lsp";
|
||||
|
||||
minimalOCamlVersion = "4.14";
|
||||
|
||||
version = "0.2.1";
|
||||
|
||||
nativeBuildInputs = [ menhir ];
|
||||
propagatedBuildInputs = [
|
||||
menhirLib
|
||||
menhirSdk
|
||||
stdune
|
||||
re
|
||||
menhir
|
||||
lwt_ppx
|
||||
containers
|
||||
linol-lwt
|
||||
merlin-lib
|
||||
visitors
|
||||
];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dalps";
|
||||
repo = "menhir-lsp";
|
||||
rev = "0.2.1";
|
||||
sha256 = "6xm+Jv8MXG4Ma+3uSdHKvJoK6MVCAEmUSoqs/L8Ee+U=";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue