about summary refs log tree commit diff
path: root/src/libstore/globals.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-27T12·29+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-27T12·29+0100
commit8b8ee53bc73769bb25d967ba259dabc9b23e2e6f (patch)
tree79aab3b316d632fc663c1c78da25a88425f4275e /src/libstore/globals.cc
parent5943f41b8bd95b8559cb6768bb0a1151f6bee68d (diff)
Add builtin constants ‘langVersion’ and ‘nixVersion’
The integer constant ‘langVersion’ denotes the current language
version.  It gets increased every time a language feature is
added/changed/removed.  It's currently 1.

The string constant ‘nixVersion’ contains the current Nix version,
e.g. "1.2pre2980_9de6bc5".
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r--src/libstore/globals.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc
index 7b881d1d2ff8..bb453a45199e 100644
--- a/src/libstore/globals.cc
+++ b/src/libstore/globals.cc
@@ -197,4 +197,7 @@ Settings::SettingsMap Settings::getOverrides()
 }
 
 
+const string nixVersion = NIX_VERSION;
+
+
 }