1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Remove lib.typeOf

It clashes with builtins.typeOf.
This commit is contained in:
Eelco Dolstra 2014-02-27 21:27:29 +01:00
parent d74c40d6bf
commit ebe57b1ac8

View file

@ -10,7 +10,6 @@ with import ./strings.nix;
rec {
isType = type: x: (x._type or "") == type;
typeOf = x: x._type or "";
setType = typeName: value: value // {
_type = typeName;