mirror of
https://gitlab.com/rensa-nix/devshell.git
synced 2025-12-11 22:00:08 +01:00
11 lines
252 B
Nix
11 lines
252 B
Nix
{
|
|
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;};
|
|
};
|
|
}
|