4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ callPackage, fetchurl, fetchpatch, lib, stdenv
|
|
, ocamlPackages, coqPackages, rubber, hevea, emacs }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "why3";
|
|
version = "1.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://gforge.inria.fr/frs/download.php/file/38367/why3-1.3.3.tar.gz";
|
|
sha256 = "1n0a2nn1gnk0zg339lh698g4wpk7m8m1vyi2yvifd5adqvk4milw";
|
|
};
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
ocaml findlib ocamlgraph zarith menhir
|
|
# Compressed Sessions
|
|
# Emacs compilation of why3.el
|
|
emacs
|
|
# Documentation
|
|
rubber hevea
|
|
# GUI
|
|
lablgtk
|
|
# WebIDE
|
|
js_of_ocaml js_of_ocaml-ppx
|
|
# Coq Support
|
|
coqPackages.coq coqPackages.flocq ocamlPackages.camlp5
|
|
];
|
|
|
|
propagatedBuildInputs = with ocamlPackages; [ camlzip num ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile.in --replace js_of_ocaml.ppx js_of_ocaml-ppx
|
|
'';
|
|
|
|
configureFlags = [ "--enable-verbose-make" ];
|
|
|
|
installTargets = [ "install" "install-lib" ];
|
|
|
|
passthru.withProvers = callPackage ./with-provers.nix {};
|
|
|
|
meta = with lib; {
|
|
description = "A platform for deductive program verification";
|
|
homepage = "http://why3.lri.fr/";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice vbgl ];
|
|
};
|
|
}
|