6fd9283bba
resholve: init at 0.4.0 resholve attempts to resolve executables in shell scripts. Includes Nix builder for resolving dependencies in Nix-built shell projects.
10 lines
187 B
Nix
10 lines
187 B
Nix
{ callPackage
|
|
, doCheck ? true
|
|
}:
|
|
|
|
rec {
|
|
resholve = callPackage ./resholve.nix { inherit doCheck; };
|
|
resholvePackage =
|
|
callPackage ./resholve-package.nix { inherit resholve; };
|
|
}
|