mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 02:00:13 +01:00
fix(scripts): remove nix substitutions from shell script
This commit is contained in:
parent
2bed4190a4
commit
a458a21c7b
2 changed files with 17 additions and 11 deletions
22
flake.nix
22
flake.nix
|
|
@ -116,14 +116,20 @@
|
|||
};
|
||||
copyToRoot = pkgs.buildEnv {
|
||||
name = "image-root";
|
||||
paths = [
|
||||
pkgs.gitMinimal
|
||||
pkgs.gnugrep
|
||||
pkgs.cachix
|
||||
pkgs.attic-client
|
||||
setupScript
|
||||
finalizeScript
|
||||
];
|
||||
paths = with pkgs;
|
||||
[
|
||||
gitMinimal
|
||||
gnugrep
|
||||
gnused
|
||||
busybox
|
||||
diffutils
|
||||
cachix
|
||||
attic-client
|
||||
]
|
||||
++ [
|
||||
setupScript
|
||||
finalizeScript
|
||||
];
|
||||
pathsToLink = ["/bin"];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue