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
9d236f82
Commit
9d236f82
authored
8 months ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[nix] upgrade camlp5 for OCaml 5.2
parent
fc8a5141
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/camlp5.nix
+68
-0
68 additions, 0 deletions
nix/camlp5.nix
nix/pkgs.nix
+1
-0
1 addition, 0 deletions
nix/pkgs.nix
with
69 additions
and
0 deletions
nix/camlp5.nix
0 → 100644
+
68
−
0
View file @
9d236f82
{
lib
,
stdenv
,
fetchFromGitHub
,
ocaml
,
findlib
,
perl
,
makeWrapper
,
rresult
,
bos
,
re
,
camlp-streams
,
legacy
?
false
}:
if
lib
.
versionOlder
ocaml
.
version
"4.02"
then
throw
"camlp5 is not available for OCaml
${
ocaml
.
version
}
"
else
let
params
=
if
lib
.
versionAtLeast
ocaml
.
version
"4.12"
&&
!
legacy
then
rec
{
version
=
"8.03.00"
;
src
=
fetchFromGitHub
{
owner
=
"camlp5"
;
repo
=
"camlp5"
;
rev
=
version
;
hash
=
"sha256-hu/279gBvUc7Z4jM6EHiar6Wm4vjkGXl+7bxowj+vlM="
;
};
nativeBuildInputs
=
[
makeWrapper
ocaml
findlib
perl
];
buildInputs
=
[
bos
re
rresult
];
propagatedBuildInputs
=
[
camlp-streams
];
}
else
rec
{
version
=
"7.14"
;
src
=
fetchFromGitHub
{
owner
=
"camlp5"
;
repo
=
"camlp5"
;
rev
=
"rel
${
builtins
.
replaceStrings
[
"."
]
[
""
]
version
}
"
;
sha256
=
"1dd68bisbpqn5lq2pslm582hxglcxnbkgfkwhdz67z4w9d5nvr7w"
;
};
nativeBuildInputs
=
[
ocaml
perl
];
}
;
in
stdenv
.
mkDerivation
(
params
//
{
pname
=
"ocaml
${
ocaml
.
version
}
-camlp5"
;
strictDeps
=
true
;
prefixKey
=
"-prefix "
;
preConfigure
=
''
configureFlagsArray=(--strict --libdir $out/lib/ocaml/
${
ocaml
.
version
}
/site-lib)
patchShebangs ./config/find_stuffversion.pl etc/META.pl
''
;
buildFlags
=
[
"world.opt"
];
dontStrip
=
true
;
meta
=
with
lib
;
{
description
=
"Preprocessor-pretty-printer for OCaml"
;
longDescription
=
''
Camlp5 is a preprocessor and pretty-printer for OCaml programs.
It also provides parsing and printing tools.
''
;
homepage
=
"https://camlp5.github.io/"
;
license
=
licenses
.
bsd3
;
platforms
=
ocaml
.
meta
.
platforms
or
[];
maintainers
=
with
maintainers
;
[
maggesi
vbgl
];
};
})
This diff is collapsed.
Click to expand it.
nix/pkgs.nix
+
1
−
0
View file @
9d236f82
...
@@ -3,6 +3,7 @@ let
...
@@ -3,6 +3,7 @@ let
ocamlOverlay
=
oself
:
osuper
:
{
ocamlOverlay
=
oself
:
osuper
:
{
# External Packages
# External Packages
alt-ergo
=
oself
.
callPackage
./alt-ergo.nix
{};
alt-ergo
=
oself
.
callPackage
./alt-ergo.nix
{};
camlp5
=
oself
.
callPackage
./camlp5.nix
{};
combinetura
=
oself
.
callPackage
./combinetura.nix
{};
combinetura
=
oself
.
callPackage
./combinetura.nix
{};
mlmpfr
=
oself
.
callPackage
./mlmpfr.nix
{};
mlmpfr
=
oself
.
callPackage
./mlmpfr.nix
{};
why3
=
oself
.
callPackage
./why3.nix
{};
why3
=
oself
.
callPackage
./why3.nix
{};
...
...
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