stockholm/4lib/krebs/default.nix

16 lines
203 B
Nix
Raw Normal View History

2015-07-24 10:23:52 +00:00
{ lib, ... }:
2015-07-24 18:48:00 +00:00
with builtins;
with lib;
builtins // lib // rec {
addName = name: set:
set // { inherit name; };
addNames = mapAttrs addName;
2015-07-24 10:23:52 +00:00
types = import ./types.nix { inherit lib; };
}