4a87fcbc86
easycrypt: fix build with why3-1.5.0 frama-c: build with why3 1.4.1
96 lines
2.6 KiB
Nix
96 lines
2.6 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, writeText
|
|
, autoconf, ncurses, graphviz, doxygen
|
|
, ocamlPackages, ltl2ba, coq, why3
|
|
, gdk-pixbuf, wrapGAppsHook
|
|
}:
|
|
|
|
let why3_1_5 = why3; in
|
|
let why3 = why3_1_5.overrideAttrs (o: rec {
|
|
version = "1.4.1";
|
|
src = fetchurl {
|
|
url = "https://why3.gitlabpages.inria.fr/releases/${o.pname}-${version}.tar.gz";
|
|
sha256 = "sha256:1rqyypzlvagrn43ykl0c5wxyvnry5fl1ykn3xcvlzgghk96yq3jq";
|
|
};
|
|
}); in
|
|
|
|
let
|
|
mkocamlpath = p: "${p}/lib/ocaml/${ocamlPackages.ocaml.version}/site-lib";
|
|
runtimeDeps = with ocamlPackages; [
|
|
apron.dev
|
|
biniou
|
|
camlzip
|
|
easy-format
|
|
menhirLib
|
|
mlgmpidl
|
|
num
|
|
ocamlgraph
|
|
stdlib-shims
|
|
why3
|
|
re
|
|
seq
|
|
sexplib
|
|
sexplib0
|
|
parsexp
|
|
base
|
|
yojson
|
|
zarith
|
|
];
|
|
ocamlpath = lib.concatMapStringsSep ":" mkocamlpath runtimeDeps;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "frama-c";
|
|
version = "24.0";
|
|
slang = "Chromium";
|
|
|
|
src = fetchurl {
|
|
url = "https://frama-c.com/download/frama-c-${version}-${slang}.tar.gz";
|
|
sha256 = "sha256:0x1xgip50jdz1phsb9rzwf2ra8lshn1hmd9g967xia402wrg3sjf";
|
|
};
|
|
|
|
preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")";
|
|
|
|
nativeBuildInputs = [ autoconf wrapGAppsHook ];
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
ncurses ocaml findlib ltl2ba ocamlgraph yojson menhirLib camlzip
|
|
lablgtk3 lablgtk3-sourceview3 coq graphviz zarith apron why3 mlgmpidl doxygen
|
|
gdk-pixbuf
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix OCAMLPATH ':' ${ocamlpath})
|
|
'';
|
|
|
|
# Allow loading of external Frama-C plugins
|
|
setupHook = writeText "setupHook.sh" ''
|
|
addFramaCPath () {
|
|
if test -d "''$1/lib/frama-c/plugins"; then
|
|
export FRAMAC_PLUGIN="''${FRAMAC_PLUGIN-}''${FRAMAC_PLUGIN:+:}''$1/lib/frama-c/plugins"
|
|
export OCAMLPATH="''${OCAMLPATH-}''${OCAMLPATH:+:}''$1/lib/frama-c/plugins"
|
|
fi
|
|
|
|
if test -d "''$1/lib/frama-c"; then
|
|
export OCAMLPATH="''${OCAMLPATH-}''${OCAMLPATH:+:}''$1/lib/frama-c"
|
|
fi
|
|
|
|
if test -d "''$1/share/frama-c/"; then
|
|
export FRAMAC_EXTRA_SHARE="''${FRAMAC_EXTRA_SHARE-}''${FRAMAC_EXTRA_SHARE:+:}''$1/share/frama-c"
|
|
fi
|
|
|
|
}
|
|
|
|
addEnvHooks "$targetOffset" addFramaCPath
|
|
'';
|
|
|
|
|
|
meta = {
|
|
description = "An extensible and collaborative platform dedicated to source-code analysis of C software";
|
|
homepage = "http://frama-c.com/";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = with lib.maintainers; [ thoughtpolice amiddelk ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|