10 lines
218 B
Nix
10 lines
218 B
Nix
|
|
{
|
||
|
|
callPackages,
|
||
|
|
makeSetupHook,
|
||
|
|
}:
|
||
|
|
makeSetupHook {
|
||
|
|
name = "isDeclaredMap";
|
||
|
|
passthru.tests = callPackages ./tests.nix { };
|
||
|
|
meta.description = "Tests if an associative array is declared";
|
||
|
|
} ./isDeclaredMap.bash
|