diff options
Diffstat (limited to 'dev/ci/nix')
| -rw-r--r-- | dev/ci/nix/default.nix | 5 | ||||
| -rw-r--r-- | dev/ci/nix/quickchick.nix | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/dev/ci/nix/default.nix b/dev/ci/nix/default.nix index 2dcacba0ea..17070e66ee 100644 --- a/dev/ci/nix/default.nix +++ b/dev/ci/nix/default.nix @@ -25,9 +25,10 @@ let coq-ext-lib = coqPackages.coq-ext-lib.overrideAttrs (o: { src = fetchTarball "https://github.com/coq-ext-lib/coq-ext-lib/tarball/master"; }); in -let simple-io = coqPackages.simple-io.overrideAttrs (o: { +let simple-io = + (coqPackages.simple-io.override { inherit coq-ext-lib; }) + .overrideAttrs (o: { src = fetchTarball "https://github.com/Lysxia/coq-simple-io/tarball/master"; - buildInputs = o.buildInputs ++ [ coq-ext-lib ]; }); in let bignums = coqPackages.bignums.overrideAttrs (o: diff --git a/dev/ci/nix/quickchick.nix b/dev/ci/nix/quickchick.nix index 46bf02ae3c..b90f1e4f88 100644 --- a/dev/ci/nix/quickchick.nix +++ b/dev/ci/nix/quickchick.nix @@ -1,5 +1,5 @@ { ocamlPackages, ssreflect, coq-ext-lib, simple-io }: { buildInputs = with ocamlPackages; [ ocaml findlib ocamlbuild num ]; - coqBuildInputs = [ ssreflect coq-ext-lib simple-io ]; + coqBuildInputs = [ ssreflect simple-io ]; } |
