diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-25 12:05:48 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-25 12:05:48 +0000 |
commit | 6e8c19714af00b8340eea6eecf1c38fc6b09f6de (patch) | |
tree | 861335676382dcfabb4cc073f24573158e236292 /src/libexpr/eval.cc | |
parent | d1d87badf6d07c9d319c555593be5c6d0bd08bb4 (diff) | |
download | guix-6e8c19714af00b8340eea6eecf1c38fc6b09f6de.tar.gz |
* Allow integer bindings in derivations.
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index b110c3a4a4..f6634e8921 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -127,6 +127,7 @@ Expr evalExpr2(EvalState & state, Expr e) if (atMatch(m, e) >> "Str" || atMatch(m, e) >> "Path" || atMatch(m, e) >> "Uri" || + atMatch(m, e) >> "Int" || atMatch(m, e) >> "Bool" || atMatch(m, e) >> "Function" || atMatch(m, e) >> "Attrs" || |