mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
44 lines
981 B
Nix
44 lines
981 B
Nix
{ lib, fetchFromGitHub, ocamlPackages }:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "beluga";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Beluga-lang";
|
|
repo = "Beluga";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-l/C77czLtlLnpadVx4d9ve9jv/e11jsOgzrbXt+Zo5s=";
|
|
};
|
|
|
|
duneVersion = "3";
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
gen
|
|
sedlex
|
|
extlib
|
|
dune-build-info
|
|
linenoise
|
|
omd
|
|
uri
|
|
ounit2
|
|
yojson
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/emacs/site-lisp/beluga/
|
|
cp -r tools/beluga-mode.el $out/share/emacs/site-lisp/beluga
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A functional language for reasoning about formal systems";
|
|
homepage = "https://complogic.cs.mcgill.ca/beluga";
|
|
changelog = "https://github.com/Beluga-lang/Beluga/releases/tag/v${version}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|