From 4c4fe7a114968a9c7accd86499f029314530f44c Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <e.dolstra@tudelft.nl>
Date: Mon, 12 Jan 2004 10:44:48 +0000
Subject: [PATCH] * Changed the extension for store expressions from ".nix" to
 ".store"   (following the Usenix paper).

---
 src/libstore/storeexpr.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libstore/storeexpr.cc b/src/libstore/storeexpr.cc
index e11cd5bfe..45b5af055 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);
-- 
GitLab