summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2017-04-27 12:55:52 -0400
committerJohn Ericson <Ericson2314@Yahoo.com>2017-04-27 12:55:52 -0400
commit7d546d777109a448bb3bd80b67923326586fef31 (patch)
treeba4e42bb0d3a20a71e150019a03b04e211518e42 /lib
parente89343dc08ca27cbfc94ef964a2004d5db825411 (diff)
downloadnixlib-7d546d777109a448bb3bd80b67923326586fef31.tar
nixlib-7d546d777109a448bb3bd80b67923326586fef31.tar.gz
nixlib-7d546d777109a448bb3bd80b67923326586fef31.tar.bz2
nixlib-7d546d777109a448bb3bd80b67923326586fef31.tar.lz
nixlib-7d546d777109a448bb3bd80b67923326586fef31.tar.xz
nixlib-7d546d777109a448bb3bd80b67923326586fef31.tar.zst
nixlib-7d546d777109a448bb3bd80b67923326586fef31.zip
lib platform parsing: Turn assertion back on
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/parse.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix
index 26744322e9e4..39e2177ae730 100644
--- a/lib/systems/parse.nix
+++ b/lib/systems/parse.nix
@@ -9,7 +9,7 @@ let
   lib = import ../default.nix;
   setTypesAssert = type: pred:
     mapAttrs (name: value:
-      #assert pred value;
+      assert pred value;
       setType type ({ inherit name; } // value));
   setTypes = type: setTypesAssert type (_: true);