summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-30 13:31:52 +0000
committerGitHub <noreply@github.com>2018-10-30 13:31:52 +0000
commit6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8 (patch)
treef8eaf67484757a410c627a5ea0e44e3b82143ca1 /pkgs/development/tools
parent1d8794e16ecd92e5e3174fca69964bdbd2c8d110 (diff)
parent8df0ca2bbcc98a787fccf623a91f5ea79161fce9 (diff)
downloadnixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.tar
nixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.tar.gz
nixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.tar.bz2
nixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.tar.lz
nixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.tar.xz
nixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.tar.zst
nixlib-6f3afd1dad1e3e14cb5b3db102ef94373c1a58d8.zip
Merge pull request #49359 from Mic92/verasco
verasco: remove
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/analysis/verasco/default.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/development/tools/analysis/verasco/default.nix b/pkgs/development/tools/analysis/verasco/default.nix
deleted file mode 100644
index 7f623e72dc31..000000000000
--- a/pkgs/development/tools/analysis/verasco/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ stdenv, lib, fetchurl
-, coq, ocaml, findlib, menhir, zarith
-, tools ? stdenv.cc
-}:
-
-assert lib.versionAtLeast ocaml.version "4.02";
-
-stdenv.mkDerivation rec {
-  name = "verasco-1.3";
-  src = fetchurl {
-    url = "http://compcert.inria.fr/verasco/release/${name}.tgz";
-    sha256 = "0zvljrpwnv443k939zlw1f7ijwx18nhnpr8jl3f01jc5v66hr2k8";
-  };
-
-  buildInputs = [ coq ocaml findlib menhir zarith ];
-
-  preConfigure = ''
-    substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc'
-  '';
-
-  configureFlags = [
-    "-toolprefix ${tools}/bin/"
-    (if stdenv.isDarwin then "ia32-macosx" else "ia32-linux")
-  ];
-
-  prefixKey = "-prefix ";
-
-  enableParallelBuilding = true;
-  buildFlags = "proof extraction ccheck";
-
-  installPhase = ''
-    mkdir -p $out/bin
-    cp ccheck $out/bin/
-    ln -s $out/bin/ccheck $out/bin/verasco
-    if [ -e verasco.ini ]
-    then
-      mkdir -p $out/share
-      cp verasco.ini $out/share/
-    fi
-    mkdir -p $out/lib/compcert
-    cp -riv runtime/include $out/lib/compcert
-  '';
-
-  meta = {
-    homepage = http://compcert.inria.fr/verasco/;
-    description = "A static analyzer for the CompCert subset of ISO C 1999";
-    maintainers = with stdenv.lib.maintainers; [ vbgl ];
-    license = stdenv.lib.licenses.unfree;
-    platforms = with stdenv.lib.platforms; darwin ++ linux;
-  };
-}