From c38c5dba10e5a239a4d297c64f4c0a5fd2d5e1b9 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 12 Jun 2021 17:29:27 +0200 Subject: [PATCH] tests.trivial: Add emptyFile, emptyDirectory to samples --- pkgs/build-support/trivial-builders/test/sample.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/build-support/trivial-builders/test/sample.nix b/pkgs/build-support/trivial-builders/test/sample.nix index 060be011093..27aee6b73db 100644 --- a/pkgs/build-support/trivial-builders/test/sample.nix +++ b/pkgs/build-support/trivial-builders/test/sample.nix @@ -12,4 +12,8 @@ in norefs = writeText "hi" "hello"; helloRef = writeText "hi" "hello ${hello}"; helloFigletRef = writeText "hi" "hello ${hello} ${figlet}"; + inherit (pkgs) + emptyFile + emptyDirectory + ; }