diff options
author | tv <tv@krebsco.de> | 2018-12-11 21:59:41 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-12-11 22:06:35 +0100 |
commit | 96cdd9c9fbf4f775d64ab2c8b27c1ef672f9752d (patch) | |
tree | 1a9d678d04337f09ab8452b64e68d570647c03c9 /lib | |
parent | 831e8c31150fd0aca583d40a6cef9ab5a6846fc2 (diff) |
lib.setAttr: RIP
Diffstat (limited to 'lib')
-rw-r--r-- | lib/default.nix | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/default.nix b/lib/default.nix index bf8c65e..54597e5 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -29,8 +29,6 @@ let listToAttrs (map (name: nameValuePair name set.${name}) (filter (flip hasAttr set) names)); - setAttr = name: value: set: set // { ${name} = value; }; - test = re: x: isString x && testString re x; testString = re: x: match re x != null; |