We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 443b8bf commit fd8a0f6Copy full SHA for fd8a0f6
.github/workflows/ci.yml
@@ -40,4 +40,5 @@ jobs:
40
- name: Run nix-build
41
run: |
42
cd test_depots/${{matrix.test_depot}}
43
+ export NIX_PATH="nixpkgs=$(nix run .#nixpkgsPath)"
44
nix-build .
flake.nix
@@ -24,6 +24,8 @@
24
--set PATH ${lib.makeBinPath [nix python3 julia-stable-bin]} \
25
--set NIX_PATH nixpkgs=${pkgs.path}
26
'';
27
+
28
+ nixpkgsPath = pkgs.writeShellScriptBin "nixpkgsPath.sh" "echo -n ${pkgs.path}";
29
};
30
});
31
}
0 commit comments