Skip to content
Snippets Groups Projects
Commit 5d996e2a authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Try specifying the nixpkgs we want like this, instead.

parent 59016fb8
No related branches found
No related tags found
1 merge request!14Try out a CircleCI configuration
...@@ -18,6 +18,10 @@ jobs: ...@@ -18,6 +18,10 @@ jobs:
test: test:
docker: docker:
- image: "nixos/nix:2.2.1" - image: "nixos/nix:2.2.1"
environment:
NIX_PATH: "nixpkgs=https://github.com/NixOS/nixpkgs/archive/3c83ad6ac13b67101cc3e2e07781963a010c1624.tar.gz"
steps: steps:
- run: - run:
name: "Install Git" name: "Install Git"
......
let { pkgs ? import <nixpkgs> { } }:
pinnedPkgs = import (builtins.fetchTarball { pkgs.mkShell {
url = "https://github.com/NixOS/nixpkgs/archive/3c83ad6ac13b67101cc3e2e07781963a010c1624.tar.gz";
sha256 = "0cdq342wrkvkyccygpp1gvwp7hhqg68hljjwld4vjixm901ayy14";
}) {};
in
{ ... }:
pinnedPkgs.mkShell {
buildInputs = [ buildInputs = [
pinnedPkgs.stack pkgs.stack
]; ];
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment