Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
72f2f305
Commit
72f2f305
authored
2 years ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[ci] add plugin checkers shell
parent
3811327c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nix/pkgs.nix
+4
-1
4 additions, 1 deletion
nix/pkgs.nix
nix/plugin-checkers-shell.nix
+18
-0
18 additions, 0 deletions
nix/plugin-checkers-shell.nix
with
22 additions
and
1 deletion
nix/pkgs.nix
+
4
−
1
View file @
72f2f305
...
...
@@ -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)
# Shell
s
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
{};
...
...
This diff is collapsed.
Click to expand it.
nix/plugin-checkers-shell.nix
0 → 100644
+
18
−
0
View file @
72f2f305
{
lib
,
stdenv
,
frama-c
,
git
,
gnumake
,
headache
,
ocp-indent
}
:
stdenv
.
mkDerivation
rec
{
name
=
"plugin-checkers-shell"
;
buildInputs
=
[
frama-c
git
gnumake
headache
ocp-indent
];
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment