diff options
| author | Vincent Laporte | 2019-03-18 08:55:48 +0000 |
|---|---|---|
| committer | Vincent Laporte | 2019-03-18 08:56:11 +0000 |
| commit | 0c3aa2f4bbd0bb5124ff3cc95759cb7cb89caa6b (patch) | |
| tree | 21f3242cb3dabf35ce446398988f11013286f8c4 /dev/ci/nix/default.nix | |
| parent | d7e7ec69c84db9c164dd546642ed0b638af766d3 (diff) | |
[nix] Update reference to nixpkgs
Diffstat (limited to 'dev/ci/nix/default.nix')
| -rw-r--r-- | dev/ci/nix/default.nix | 5 |
1 files changed, 3 insertions, 2 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: |
