-
-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Labels
Description
Hey, I don't know if it is the desired behaviour but if an input of a flake does not have a lock file then nil will throw this (see image below).
A simple flake to reproduce:
{
description = "A very basic flake";
inputs = {
poetry2nix.url = "github:nix-community/poetry2nix";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
}Edit:
I'm on version 2023-05-02
keysmashes