stockholm/krebs/4lib/default.nix
2015-10-15 00:55:07 +02:00

28 lines
554 B
Nix

{ lib, ... }:
with builtins;
with lib;
builtins // lib // rec {
eq = x: y: x == y;
addName = name: set:
set // { inherit name; };
addNames = mapAttrs addName;
types = import ./types.nix { inherit lib; };
dns = import ./dns.nix { inherit lib; };
listset = import ./listset.nix { inherit lib; };
shell = import ./shell.nix { inherit lib; };
tree = import ./tree.nix { inherit lib; };
toC = x: {
list = "{ ${concatStringsSep ", " (map toC x)} }";
null = "NULL";
string = toJSON x; # close enough
}.${typeOf x};
}