nixpkgs/pkgs/development/tools/analysis/frama-c/default.nix

81 lines
2.2 KiB
Nix
Raw Normal View History

2019-06-19 03:01:38 +01:00
{ lib, stdenv, fetchurl, makeWrapper, writeText
, autoconf, ncurses, graphviz, doxygen
, ocamlPackages, ltl2ba, coq, why3
, gdk-pixbuf, wrapGAppsHook
}:
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; [
2020-11-20 18:30:11 +00:00
apron.dev
2019-06-19 03:01:38 +01:00
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
stdenv.mkDerivation rec {
pname = "frama-c";
2020-11-20 18:30:11 +00:00
version = "22.0";
slang = "Titanium";
src = fetchurl {
2018-12-02 13:14:31 +00:00
url = "http://frama-c.com/download/frama-c-${version}-${slang}.tar.gz";
2020-11-20 18:30:11 +00:00
sha256 = "1mq1fijka95ydrla486yr4w6wdl9l7vmp512s1q00b0p6lmfwmkh";
};
2019-06-19 03:01:38 +01:00
preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")";
nativeBuildInputs = [ autoconf wrapGAppsHook ];
2016-10-12 12:20:57 +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
gdk-pixbuf
2012-07-12 16:42:24 +01:00
];
2019-06-19 03:01:38 +01:00
enableParallelBuilding = true;
preFixup = ''
gappsWrapperArgs+=(--prefix OCAMLPATH ':' ${ocamlpath})
'';
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"
2019-06-19 03:01:38 +01:00
fi
if test -d "''$1/lib/frama-c"; then
export OCAMLPATH="''${OCAMLPATH-}''${OCAMLPATH:+:}''$1/lib/frama-c"
2019-06-19 03:01:38 +01:00
fi
if test -d "''$1/share/frama-c/"; then
export FRAMAC_EXTRA_SHARE="''${FRAMAC_EXTRA_SHARE-}''${FRAMAC_EXTRA_SHARE:+:}''$1/share/frama-c"
2019-06-19 03:01:38 +01:00
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
meta = {
2016-09-27 21:26:10 +01:00
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;
};
}