about summary refs log tree commit diff
path: root/src/libstore/storeexpr.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-01-12T10·44+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-01-12T10·44+0000
commit4c4fe7a114968a9c7accd86499f029314530f44c (patch)
tree6d51c83450f49c1848a1348ec17bca77583b134a /src/libstore/storeexpr.cc
parent46a71c857c617b5acbf3d1fdb8fb7e676a4881a2 (diff)
* Changed the extension for store expressions from ".nix" to ".store"
  (following the Usenix paper).

Diffstat (limited to 'src/libstore/storeexpr.cc')
-rw-r--r--src/libstore/storeexpr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/storeexpr.cc b/src/libstore/storeexpr.cc
index e11cd5bfe5..45b5af055a 100644
--- a/src/libstore/storeexpr.cc
+++ b/src/libstore/storeexpr.cc
@@ -15,7 +15,7 @@ Path writeTerm(ATerm t, const string & suffix)
     Hash h = hashTerm(t);
 
     Path path = canonPath(nixStore + "/" + 
-        (string) h + suffix + ".nix");
+        (string) h + suffix + ".store");
 
     if (!isValidPath(path)) {
         char * s = ATwriteToString(t);