chore(gitlab-ci): include stdenv contd

This commit is contained in:
Sarah Vaupel 2024-01-17 10:13:24 +01:00
parent 12d885f2f2
commit 9c59ef26af
2 changed files with 3 additions and 2 deletions

View File

@ -42,7 +42,7 @@ node modules:
- .npm
- node_modules
script:
- "nix shell .#stdenv .#gup .#nodejs_21 --command make node_modules"
- "nix shell .#stdenv/make .#gup .#nodejs_21 --command make node_modules"
before_script: &nix-before
- git config --global init.defaultBranch master
- install -v -m 0700 -d ~/.ssh

View File

@ -107,7 +107,8 @@
(final: prev: let
pkgs = import nixpkgs { inherit system; };
in {
inherit (pkgs) gup dockerTools nodejs_21 glibcLocalesUtf8 tzdata exiftools chromium minio minio-client skopeo; inherit (pkgs.stdenv) fetchurlBoot make;
inherit (pkgs) gup dockerTools nodejs_21 glibcLocalesUtf8 tzdata exiftools chromium minio minio-client skopeo; inherit (pkgs.stdenv) fetchurlBoot;
make = pkgs.stdenv;
stack = pkgs.symlinkJoin {
inherit (pkgs.stack) name;
paths = [pkgs.stack];