6 lines
163 B
Nix
6 lines
163 B
Nix
# If pkgs is not defined, instanciate nixpkgs from locked commit
|
|
{ pkgs ? (import ../nixpkgs.nix) { }
|
|
, ...
|
|
}: {
|
|
default = import ./default { inherit pkgs; };
|
|
}
|