about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 e11cd5bfe55b..45b5af055a9b 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);