emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/nix-mode 7d681ff81b 357/500: Merge pull request #91 from p


From: ELPA Syncer
Subject: [nongnu] elpa/nix-mode 7d681ff81b 357/500: Merge pull request #91 from purcell/relative-executable-paths
Date: Sat, 29 Jan 2022 08:27:20 -0500 (EST)

branch: elpa/nix-mode
commit 7d681ff81bce096edecde946396a9e9bd663b1b9
Merge: ddf091708b 00750803d9
Author: Matthew Bauer <mjbauer95@gmail.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #91 from purcell/relative-executable-paths
    
    Don't freeze full executable paths at load time
---
 nix.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/nix.el b/nix.el
index 3261e075b4..eddabb79c4 100644
--- a/nix.el
+++ b/nix.el
@@ -22,27 +22,27 @@
   "Nix-related customizations"
   :group 'languages)
 
-(defcustom nix-executable (executable-find "nix")
+(defcustom nix-executable "nix"
   "Nix executable location."
   :group 'nix
   :type 'string)
 
-(defcustom nix-build-executable (executable-find "nix-build")
+(defcustom nix-build-executable "nix-build"
   "Nix-build executable location."
   :group 'nix
   :type 'string)
 
-(defcustom nix-instantiate-executable (executable-find "nix-instantiate")
+(defcustom nix-instantiate-executable "nix-instantiate"
   "Nix executable location."
   :group 'nix
   :type 'string)
 
-(defcustom nix-store-executable (executable-find "nix-store")
+(defcustom nix-store-executable "nix-store"
   "Nix executable location."
   :group 'nix
   :type 'string)
 
-(defcustom nix-shell-executable (executable-find "nix-shell")
+(defcustom nix-shell-executable "nix-shell"
   "Location of ‘nix-shell’ executable."
   :group 'nix
   :type 'string)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]