summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHorki <ivanzvonimirhorvat@gmail.com>2020-10-25 19:13:12 +0100
committerDavid Peter <sharkdp@users.noreply.github.com>2020-10-25 21:03:30 +0100
commit8348c1b7468d03b5ccabc38175059873da393847 (patch)
treea0658dbfaed8f2052268970f904476b4d75425a6
parent0a9744ac95d37b4c1bd7008e08ff5d269432e4aa (diff)
1213: nix; fix buildInputs arr
-rw-r--r--tests/syntax-tests/highlighted/nix/test.nix8
-rw-r--r--tests/syntax-tests/source/nix/test.nix4
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/syntax-tests/highlighted/nix/test.nix b/tests/syntax-tests/highlighted/nix/test.nix
index b210bc63..ebec9ba9 100644
--- a/tests/syntax-tests/highlighted/nix/test.nix
+++ b/tests/syntax-tests/highlighted/nix/test.nix
@@ -9,9 +9,9 @@
 src = ./;
- buildInputs = {
+ buildInputs = [
 gzip
- bzip2
- python27
- };
+ bzip2
+ python27
+ ];
}
diff --git a/tests/syntax-tests/source/nix/test.nix b/tests/syntax-tests/source/nix/test.nix
index e6fed002..dc14537a 100644
--- a/tests/syntax-tests/source/nix/test.nix
+++ b/tests/syntax-tests/source/nix/test.nix
@@ -9,9 +9,9 @@ stdenv.mkDerivation rec {
src = ./;
- buildInputs = {
+ buildInputs = [
gzip
bzip2
python27
- };
+ ];
} \ No newline at end of file