Skip to content

Commit

Permalink
test: add missing nix command in installation test
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Aug 24, 2024
1 parent bc0e280 commit 6736cfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/installation-test.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Test that checks whether the correct hooks are created in the hooks folder.
{ git, perl, coreutils, runCommand, run, lib, mktemp }:
{ git, perl, nix, coreutils, runCommand, run, lib, mktemp }:
let
tests = {
basic-test = {
Expand Down Expand Up @@ -74,7 +74,7 @@ let
'')
tests;
in
runCommand "installation-test" { nativeBuildInputs = [ git perl coreutils mktemp ]; } ''
runCommand "installation-test" { nativeBuildInputs = [ git perl coreutils mktemp nix ]; } ''
set -eoux
HOME=$(mktemp -d)
Expand Down

0 comments on commit 6736cfd

Please sign in to comment.