35406647fd
> There is an issue in the test added by #123111. > [it] introduces a dependency on the contents of nixpkgs, > making every change evaluate with a different hash.
15 lines
311 B
Nix
15 lines
311 B
Nix
{ pkgs ? import ../../../.. { config = {}; overlays = []; } }:
|
|
let
|
|
inherit (pkgs)
|
|
figlet
|
|
hello
|
|
writeText
|
|
;
|
|
in
|
|
{
|
|
hello = hello;
|
|
figlet = figlet;
|
|
norefs = writeText "hi" "hello";
|
|
helloRef = writeText "hi" "hello ${hello}";
|
|
helloFigletRef = writeText "hi" "hello ${hello} ${figlet}";
|
|
}
|