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.
4 lines
162 B
Nix
4 lines
162 B
Nix
{ pkgs ? import ../../../.. { config = {}; overlays = []; } }:
|
|
pkgs.lib.mapAttrs
|
|
(k: v: pkgs.writeReferencesToFile v)
|
|
(import ./sample.nix { inherit pkgs; })
|