about summary refs log tree commit diff
path: root/nixos/tests/hydra
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-09-25 00:28:38 +0300
committerArtturin <Artturin@artturin.com>2022-09-26 17:53:26 +0300
commit6910a4eea0038728a2f10ce84122806f2cb6b170 (patch)
treed4d3f2581fe8f2231ff7b4352adce72157cd6248 /nixos/tests/hydra
parentcbfc406adc8701b0f73e5fd73c06b8f8eeddeb49 (diff)
treewide: makeWrapper to nativeBuildInputs
this should be all of them other than the failed splices
found with nixpkgs-lint
Diffstat (limited to 'nixos/tests/hydra')
-rw-r--r--nixos/tests/hydra/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/hydra/common.nix b/nixos/tests/hydra/common.nix
index fdf2b2c6f6dc1..2bce03418e1ff 100644
--- a/nixos/tests/hydra/common.nix
+++ b/nixos/tests/hydra/common.nix
@@ -16,7 +16,7 @@
     createTrivialProject = pkgs.stdenv.mkDerivation {
       name = "create-trivial-project";
       dontUnpack = true;
-      buildInputs = [ pkgs.makeWrapper ];
+      nativeBuildInputs = [ pkgs.makeWrapper ];
       installPhase = "install -m755 -D ${./create-trivial-project.sh} $out/bin/create-trivial-project.sh";
       postFixup = ''
         wrapProgram "$out/bin/create-trivial-project.sh" --prefix PATH ":" ${pkgs.lib.makeBinPath [ pkgs.curl ]} --set EXPR_PATH ${trivialJob}