mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
13 lines
270 B
Nix
13 lines
270 B
Nix
{
|
|
lib,
|
|
callPackages,
|
|
makeSetupHook,
|
|
}:
|
|
makeSetupHook {
|
|
name = "isDeclaredMap";
|
|
passthru.tests = callPackages ./tests.nix { };
|
|
meta = {
|
|
description = "Tests if an associative array is declared";
|
|
license = lib.licenses.mit;
|
|
};
|
|
} ./isDeclaredMap.bash
|