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
ec7e0467
Commit
ec7e0467
authored
8 months ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[nix] remove packages whose default is now OK
parent
fc4ea360
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
nix/odoc-parser.nix
+0
-23
0 additions, 23 deletions
nix/odoc-parser.nix
nix/odoc.nix
+0
-27
0 additions, 27 deletions
nix/odoc.nix
nix/pkgs.nix
+0
-3
0 additions, 3 deletions
nix/pkgs.nix
nix/ppxlib.nix
+0
-29
0 additions, 29 deletions
nix/ppxlib.nix
with
0 additions
and
82 deletions
nix/odoc-parser.nix
deleted
100644 → 0
+
0
−
23
View file @
fc4ea360
{
lib
,
fetchurl
,
buildDunePackage
,
ocaml
,
astring
,
result
,
camlp-streams
}:
buildDunePackage
rec
{
pname
=
"odoc-parser"
;
version
=
"2.4.1"
;
minimalOCamlVersion
=
"4.02"
;
src
=
fetchurl
{
url
=
"https://github.com/ocaml/odoc/releases/download/
${
version
}
/odoc-
${
version
}
.tbz"
;
sha256
=
"sha256-uBSguQILUD62fxfR2alp0FK2PYzcfN+l+3k7E3VYzts="
;
};
propagatedBuildInputs
=
[
astring
result
camlp-streams
];
meta
=
{
description
=
"Parser for Ocaml documentation comments"
;
license
=
lib
.
licenses
.
isc
;
maintainers
=
[
lib
.
maintainers
.
marsam
];
homepage
=
"https://github.com/ocaml-doc/odoc-parser"
;
changelog
=
"https://github.com/ocaml-doc/odoc-parser/raw/
${
version
}
/CHANGES.md"
;
};
}
This diff is collapsed.
Click to expand it.
nix/odoc.nix
deleted
100644 → 0
+
0
−
27
View file @
fc4ea360
{
lib
,
fetchurl
,
buildDunePackage
,
ocaml
,
astring
,
cmdliner
,
cppo
,
fpath
,
result
,
tyxml
,
odoc-parser
,
fmt
,
crunch
}:
buildDunePackage
rec
{
pname
=
"odoc"
;
version
=
"2.4.1"
;
src
=
fetchurl
{
url
=
"https://github.com/ocaml/odoc/releases/download/
${
version
}
/odoc-
${
version
}
.tbz"
;
sha256
=
"sha256-uBSguQILUD62fxfR2alp0FK2PYzcfN+l+3k7E3VYzts="
;
};
nativeBuildInputs
=
[
cppo
crunch
];
buildInputs
=
[
astring
cmdliner
fpath
result
tyxml
odoc-parser
fmt
];
doCheck
=
false
;
meta
=
{
description
=
"A documentation generator for OCaml"
;
license
=
lib
.
licenses
.
isc
;
maintainers
=
[
lib
.
maintainers
.
vbgl
];
homepage
=
"https://github.com/ocaml/odoc"
;
changelog
=
"https://github.com/ocaml/odoc/blob/
${
version
}
/CHANGES.md"
;
};
}
This diff is collapsed.
Click to expand it.
nix/pkgs.nix
+
0
−
3
View file @
ec7e0467
...
...
@@ -5,9 +5,6 @@ let
alt-ergo
=
oself
.
callPackage
./alt-ergo.nix
{};
combinetura
=
oself
.
callPackage
./combinetura.nix
{};
mlmpfr
=
oself
.
callPackage
./mlmpfr.nix
{};
odoc
=
oself
.
callPackage
./odoc.nix
{};
odoc-parser
=
oself
.
callPackage
./odoc-parser.nix
{};
ppxlib
=
oself
.
callPackage
./ppxlib.nix
{};
why3
=
oself
.
callPackage
./why3.nix
{};
# Helpers
...
...
This diff is collapsed.
Click to expand it.
nix/ppxlib.nix
deleted
100644 → 0
+
0
−
29
View file @
fc4ea360
{
lib
,
fetchurl
,
buildDunePackage
,
ocaml
,
stdlib-shims
,
ocaml-compiler-libs
,
ppx_derivers
,
stdio
}:
buildDunePackage
rec
{
pname
=
"ppxlib"
;
version
=
"0.32.0"
;
duneVersion
=
"3"
;
src
=
fetchurl
{
url
=
"https://github.com/ocaml-ppx/ppxlib/releases/download/
${
version
}
/ppxlib-
${
version
}
.tbz"
;
sha256
=
"sha256-UHzHPM+JXyLutSV6IkODjBijigkQX8/1Xu75FIVVQis="
;
};
propagatedBuildInputs
=
[
ocaml-compiler-libs
ppx_derivers
stdio
stdlib-shims
];
meta
=
{
description
=
"Comprehensive ppx tool set"
;
license
=
lib
.
licenses
.
mit
;
maintainers
=
[
lib
.
maintainers
.
vbgl
];
homepage
=
"https://github.com/ocaml-ppx/ppxlib"
;
};
}
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