ikos: init at 2.1

This commit is contained in:
Etienne Laurin
2018-12-11 20:20:29 +00:00
parent 10d9fe7d38
commit 328fbcff60
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
{ stdenv, lib, fetchFromGitHub, cmake, boost
, gmp, llvm, clang, sqlite, python3
, ocamlPackages, mpfr, ppl, doxygen, graphviz
}:
let
python = python3.withPackages (ps: with ps; [
pygments
]);
in
stdenv.mkDerivation rec {
name = "ikos";
version = "2.1";
src = fetchFromGitHub {
owner = "NASA-SW-VnV";
repo = name;
rev = "v${version}";
sha256 = "09nf47hpk5w5az4c0hcr5hhwvpz8zg1byyg185542cpzbq1xj8cb";
};
buildInputs = [ cmake boost gmp clang llvm sqlite python
ocamlPackages.apron mpfr ppl doxygen graphviz ];
cmakeFlags = "-DAPRON_ROOT=${ocamlPackages.apron}";
postBuild = "make doc";
meta = with lib; {
homepage = https://github.com/NASA-SW-VnV/ikos;
description = "Static analyzer for C/C++ based on the theory of Abstract Interpretation";
license = licenses.nasa13;
maintainers = with maintainers; [ atnnn ];
};
}