mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
14 lines
270 B
Nix
14 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
|