mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01: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; })
|