devshell/.nix/repo/flake.nix

12 lines
252 B
Nix
Raw Normal View History

2025-07-31 12:37:19 +02:00
{
inputs = {
nixtest-lib.url = "gitlab:TECHNOFAB/nixtest?dir=lib";
};
outputs = i:
i
// {
ntlib = i.nixtest-lib.lib {inherit (i.parent) pkgs;};
devshell = import "${i.parent.self}/lib" {inherit (i.parent) pkgs;};
};
2025-07-31 12:37:19 +02:00
}