about summary refs log tree commit diff
path: root/nixos/tests/hydra
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-06-19 11:45:34 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-07-01 04:23:51 -0400
commit3f4a353737f165d4935c0404404c0de6eea92093 (patch)
treeadfa77773876bb21a3e8707648c8259546905bb6 /nixos/tests/hydra
parentb10e4624041cbbc824c034ee91bdca90d1132958 (diff)
treewide: use dontUnpack
Diffstat (limited to 'nixos/tests/hydra')
-rw-r--r--nixos/tests/hydra/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/hydra/default.nix b/nixos/tests/hydra/default.nix
index 882bced86d399..f99b367ac9b72 100644
--- a/nixos/tests/hydra/default.nix
+++ b/nixos/tests/hydra/default.nix
@@ -17,7 +17,7 @@ let
 
   createTrivialProject = pkgs.stdenv.mkDerivation {
     name = "create-trivial-project";
-    unpackPhase = ":";
+    dontUnpack = true;
     buildInputs = [ pkgs.makeWrapper ];
     installPhase = "install -m755 -D ${./create-trivial-project.sh} $out/bin/create-trivial-project.sh";
     postFixup = ''