mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
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.
5 lines
168 B
Nix
5 lines
168 B
Nix
{ pkgs ? import ../../../.. { config = {}; overlays = []; } }:
|
|
pkgs.lib.mapAttrs
|
|
(k: v: pkgs.writeDirectReferencesToFile v)
|
|
(import ./sample.nix { inherit pkgs; })
|