Skip to content
Snippets Groups Projects
Commit 72f2f305 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[ci] add plugin checkers shell

parent 3811327c
No related branches found
No related tags found
No related merge requests found
......@@ -15,10 +15,13 @@ let
mk_tests = oself.callPackage ./mk_tests.nix {};
mk_plugin = oself.callPackage ./mk_plugin.nix {};
# Shell containing checkers (hdrck, ocp-indent)
# Shells containing checkers (hdrck, ocp-indent, Frama-C for plugins)
frama-c-checkers-shell = oself.callPackage ./frama-c-checkers-shell.nix {
git = pkgs.git ;
};
plugin-checkers-shell = oself.callPackage ./plugin-checkers-shell.nix {
git = pkgs.git ;
};
# Builds
frama-c = oself.callPackage ./frama-c.nix {};
......
{ lib
, stdenv
, frama-c
, git
, gnumake
, headache
, ocp-indent
} :
stdenv.mkDerivation rec {
name = "plugin-checkers-shell";
buildInputs = [
frama-c
git
gnumake
headache
ocp-indent
];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment