mirror of
https://github.com/numtide/flake-utils.git
synced 2025-03-06 08:56:53 +00:00
11 lines
281 B
Nix
11 lines
281 B
Nix
final: prev:
|
|
{
|
|
# this key should be the same as the simpleFlake name attribute.
|
|
simple-flake = {
|
|
# assuming that hello is a project-specific package;
|
|
hello = prev.hello;
|
|
|
|
# demonstrating recursive packages
|
|
terraform-providers = prev.terraform-providers;
|
|
};
|
|
}
|