-
Notifications
You must be signed in to change notification settings - Fork 575
check opam switch - compatible #11569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6b9a9ba
28e9962
e5150d0
e71ce26
42ca239
320d734
35abc1b
06e4956
7adb65f
fcab071
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ inputs: pkgs: { | |
buildPhase = "make check-format"; | ||
installPhase = "touch $out"; | ||
meta.checkDescription = "that OCaml code is formatted properly"; | ||
DISABLE_CHECK_OPAM_SWITCH = "true"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not entirely convinced that we should skip the check here: using the wrong There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (btw I think the ocamlformat version should be enforced with an .ocamlformat file) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For this check, the environment is managed via nix and not opam, so the It should not be needed however as nix directly reads the |
||
}; | ||
|
||
# todo: libp2p_ipc | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ roots: [ | |
"bitstring.4.1.0" | ||
"camlp4.4.14+1" | ||
"capnp.3.4.0" | ||
"check_opam_switch.~dev" | ||
"cohttp-async.5.0.0" | ||
"core_extended.v0.14.0" | ||
"extlib.1.7.8" | ||
|
@@ -67,6 +68,7 @@ installed: [ | |
"caqti-async.1.3.0" | ||
"caqti-driver-postgresql.1.5.1" | ||
"charInfo_width.1.1.0" | ||
"check_opam_switch.~dev" | ||
"cmdliner.1.0.3" | ||
"cohttp.5.0.0" | ||
"cohttp-async.5.0.0" | ||
|
@@ -140,6 +142,7 @@ installed: [ | |
"merlin-extend.0.6.1" | ||
"mew.0.1.0" | ||
"mew_vi.0.5.0" | ||
"minicli.5.0.2" | ||
"mmap.1.1.0" | ||
"num.1.1" | ||
"ocaml.4.14.0" | ||
|
@@ -161,7 +164,10 @@ installed: [ | |
"octavius.1.2.2" | ||
"odoc.2.1.0" | ||
"odoc-parser.1.0.0" | ||
"opam-core.2.1.2" | ||
"opam-depext.1.2.1" | ||
"opam-file-format.2.1.4" | ||
"opam-format.2.1.2" | ||
"parsexp.v0.14.2" | ||
"postgresql.5.0.0" | ||
"ppx_assert.v0.14.0" | ||
|
@@ -241,8 +247,43 @@ installed: [ | |
"zed.3.1.0" | ||
] | ||
pinned: [ | ||
"check_opam_switch.~dev" | ||
"graphql_ppx.1.2.2" | ||
] | ||
package "check_opam_switch" { | ||
opam-version: "2.0" | ||
version: "~dev" | ||
synopsis: | ||
"A tool to check that the current opam environment is up to date with an opam.export file" | ||
description: | ||
"A tool to check that the current opam environment is up to date with an opam.export file" | ||
maintainer: "[email protected]" | ||
depends: [ | ||
"dune" {>= "3.3"} | ||
"opam-core" {>= "2.0.0"} | ||
"opam-format" {>= "2.0.0"} | ||
"minicli" {>= "5.0.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/tweag/check_opam_switch/archive/d0aa49884e0f9fd4bbb2cd1a32b798a12f84b603.tar.gz" | ||
checksum: "sha256=24ab29ea4aff9da9d649f0b577c5d4e27ce2bef51058e139965cc9be25494a46" | ||
} | ||
} | ||
package "graphql_ppx" { | ||
opam-version: "2.0" | ||
version: "1.2.2" | ||
|
Uh oh!
There was an error while loading. Please reload this page.