2019-06-19 03:01:38 +01:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, writeText
|
|
|
|
, autoconf, ncurses, graphviz, doxygen
|
2020-11-03 16:37:24 +00:00
|
|
|
, ocamlPackages, ltl2ba, coq, why3
|
|
|
|
, gdk-pixbuf, wrapGAppsHook
|
2017-07-18 08:51:49 +01:00
|
|
|
}:
|
2012-07-12 16:42:24 +01:00
|
|
|
|
2016-10-12 12:20:57 +01:00
|
|
|
let
|
|
|
|
mkocamlpath = p: "${p}/lib/ocaml/${ocamlPackages.ocaml.version}/site-lib";
|
2019-06-19 03:01:38 +01:00
|
|
|
runtimeDeps = with ocamlPackages; [
|
|
|
|
apron
|
|
|
|
biniou
|
|
|
|
camlzip
|
|
|
|
easy-format
|
|
|
|
menhir
|
|
|
|
mlgmpidl
|
|
|
|
num
|
|
|
|
ocamlgraph
|
|
|
|
why3
|
|
|
|
yojson
|
|
|
|
zarith
|
|
|
|
];
|
|
|
|
ocamlpath = lib.concatMapStringsSep ":" mkocamlpath runtimeDeps;
|
2016-10-12 12:20:57 +01:00
|
|
|
in
|
|
|
|
|
frama-c: overhaul, upgrade to 20140301-Neon
This massively upgrades the frama-c package to be far more useful,
including support for a lot more plugins, including Jessie.
Jessie unfortunately requires that its plugin is installed alongside
frama-c, so we install why2 (where it lives) along with frama-c now.
This increases the size, but makes it much more useful.
In the future, it may be possible to split out the build such that why2
is a separate expression and frama-c only installs the plugin, rather
than all of why2. However, right now this is fine.
Furthermore, why3 is now a dependency - the Jessie plugin can use
either, and defaults to Why3 now. Per the design, Frama-C can also go
from Why2->Why3 as well.
We also make Coq and Alt-Ergo dependencies, so that out-of-the-box users
get at least one SMT solver and a prover for support.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 08:30:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "frama-c";
|
2020-06-30 07:27:40 +01:00
|
|
|
version = "21.1";
|
2020-06-14 00:31:36 +01:00
|
|
|
slang = "Scandium";
|
2012-07-12 16:22:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-02 13:14:31 +00:00
|
|
|
url = "http://frama-c.com/download/frama-c-${version}-${slang}.tar.gz";
|
2020-06-30 07:27:40 +01:00
|
|
|
sha256 = "0qq0d08dzr0dmdjysiimdqmwlzgnn932vp5kf8lfn3nl45ai09dy";
|
2012-07-12 16:22:45 +01:00
|
|
|
};
|
|
|
|
|
2019-06-19 03:01:38 +01:00
|
|
|
preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")";
|
|
|
|
|
2020-11-03 16:37:24 +00:00
|
|
|
nativeBuildInputs = [ autoconf wrapGAppsHook ];
|
2016-10-12 12:20:57 +01:00
|
|
|
|
2012-07-12 16:22:45 +01:00
|
|
|
buildInputs = with ocamlPackages; [
|
2019-06-19 03:01:38 +01:00
|
|
|
ncurses ocaml findlib ltl2ba ocamlgraph yojson menhir camlzip
|
|
|
|
lablgtk coq graphviz zarith apron why3 mlgmpidl doxygen
|
2020-11-03 16:37:24 +00:00
|
|
|
gdk-pixbuf
|
2012-07-12 16:42:24 +01:00
|
|
|
];
|
|
|
|
|
2019-06-19 03:01:38 +01:00
|
|
|
enableParallelBuilding = true;
|
2012-07-12 16:22:45 +01:00
|
|
|
|
2020-11-03 16:37:24 +00:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--prefix OCAMLPATH ':' ${ocamlpath})
|
frama-c: overhaul, upgrade to 20140301-Neon
This massively upgrades the frama-c package to be far more useful,
including support for a lot more plugins, including Jessie.
Jessie unfortunately requires that its plugin is installed alongside
frama-c, so we install why2 (where it lives) along with frama-c now.
This increases the size, but makes it much more useful.
In the future, it may be possible to split out the build such that why2
is a separate expression and frama-c only installs the plugin, rather
than all of why2. However, right now this is fine.
Furthermore, why3 is now a dependency - the Jessie plugin can use
either, and defaults to Why3 now. Per the design, Frama-C can also go
from Why2->Why3 as well.
We also make Coq and Alt-Ergo dependencies, so that out-of-the-box users
get at least one SMT solver and a prover for support.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 08:30:12 +01:00
|
|
|
'';
|
|
|
|
|
2019-06-19 03:01:38 +01:00
|
|
|
# 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
|
2012-07-12 16:42:24 +01:00
|
|
|
|
2019-06-19 03:01:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
addEnvHooks "$targetOffset" addFramaCPath
|
2012-07-12 16:42:24 +01:00
|
|
|
'';
|
|
|
|
|
2019-06-19 03:01:38 +01:00
|
|
|
|
2012-07-12 16:22:45 +01:00
|
|
|
meta = {
|
2016-09-27 21:26:10 +01:00
|
|
|
description = "An extensible and collaborative platform dedicated to source-code analysis of C software";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://frama-c.com/";
|
frama-c: overhaul, upgrade to 20140301-Neon
This massively upgrades the frama-c package to be far more useful,
including support for a lot more plugins, including Jessie.
Jessie unfortunately requires that its plugin is installed alongside
frama-c, so we install why2 (where it lives) along with frama-c now.
This increases the size, but makes it much more useful.
In the future, it may be possible to split out the build such that why2
is a separate expression and frama-c only installs the plugin, rather
than all of why2. However, right now this is fine.
Furthermore, why3 is now a dependency - the Jessie plugin can use
either, and defaults to Why3 now. Per the design, Frama-C can also go
from Why2->Why3 as well.
We also make Coq and Alt-Ergo dependencies, so that out-of-the-box users
get at least one SMT solver and a prover for support.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 08:30:12 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice amiddelk ];
|
2016-09-27 21:26:10 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-07-12 16:22:45 +01:00
|
|
|
};
|
|
|
|
}
|