Fix default.nix to accept a custom pkgs

This commit is contained in:
Graham Christensen 2018-06-01 09:52:43 -04:00
parent c206ceef34
commit c9fb0d8a56

View File

@ -1 +1,2 @@
import <nixpkgs> { overlays = [ (import ./overlay.nix) ]; }
{ pkgs ? import <nixpkgs> {} }:
(import pkgs.path { overlays = [ (import ./overlay.nix) ]; })