From 0e73362a8cba592ef9469f8d68d4e35ea746e69c Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sun, 25 Sep 2022 13:18:26 +0100 Subject: [PATCH] expose pkgs in default derivation --- default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default.nix b/default.nix index 81bd4cd6..b2a98f02 100644 --- a/default.nix +++ b/default.nix @@ -27,4 +27,7 @@ in { ln -s ${kernel.vmlinux} vmlinux ''; }; + # this is just here as a convenience, so that we can get a + # cross-compiling nix-shell for any package we're customizing + inherit (nixpkgs) pkgs; }