2018-09-04 21:00:18 +02:00
|
|
|
;;; wpc-nix.el --- Nix support -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configuration to support working with Nix.
|
|
|
|
|
2020-01-23 23:02:13 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2020-04-02 15:50:53 +02:00
|
|
|
(require 'device)
|
|
|
|
|
2020-01-31 16:27:48 +01:00
|
|
|
;; TODO: These may fail at startup. How can I make sure that the .envrc is
|
|
|
|
;; consulted when Emacs starts?
|
|
|
|
(prelude/assert (f-exists? (getenv "BRIEFCASE")))
|
|
|
|
(prelude/assert (f-exists? (getenv "DEPOT")))
|
2020-01-23 23:02:13 +01:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Library
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2018-09-04 21:00:18 +02:00
|
|
|
(use-package nix-mode
|
|
|
|
:mode "\\.nix\\'")
|
|
|
|
|
2020-03-04 20:25:13 +01:00
|
|
|
;; TODO(wpcarro): Ensure the sub-process can resolve <briefcase>.
|
2020-02-02 14:45:06 +01:00
|
|
|
(defun nix/rebuild-emacs ()
|
|
|
|
"Use nix-env to rebuild wpcarros-emacs."
|
|
|
|
(interactive)
|
2020-04-02 15:50:53 +02:00
|
|
|
(let* ((emacs (if (device/corporate?) "emacs.glinux" "emacs.nixos"))
|
|
|
|
(pname (format "nix-build <briefcase/%s>" emacs))
|
|
|
|
(bname (format "*%s*" pname)))
|
|
|
|
(start-process pname bname
|
|
|
|
"nix-env"
|
|
|
|
"-I" (format "nixpkgs=%s" (f-expand "~/nixpkgs"))
|
|
|
|
"-I" (format "depot=%s" (f-expand "~/depot"))
|
|
|
|
"-I" (format "briefcase=%s" (f-expand "~/briefcase"))
|
|
|
|
"-f" "<briefcase>" "-iA" emacs)
|
|
|
|
(display-buffer bname)))
|
2020-02-02 14:45:06 +01:00
|
|
|
|
2020-03-06 12:22:56 +01:00
|
|
|
(defun nix/home-manager-switch ()
|
|
|
|
"Use Nix to reconfigure the user environment."
|
|
|
|
(interactive)
|
|
|
|
(start-process "nix/home-manager-switch" "*nix/home-manager-switch*"
|
|
|
|
"home-manager"
|
|
|
|
"-I" (format "nixpkgs=%s" (f-expand "~/nixpkgs"))
|
|
|
|
"-I" (format "home-manager=%s" (f-expand "~/home-manager"))
|
|
|
|
"switch")
|
|
|
|
(display-buffer "*nix/home-manager-switch*"))
|
|
|
|
|
2020-01-31 16:27:48 +01:00
|
|
|
(defun nix/sly-from-briefcase (attribute)
|
2020-01-23 23:02:13 +01:00
|
|
|
"Start a Sly REPL configured with a Lisp matching a derivation
|
|
|
|
from my monorepo.
|
|
|
|
|
|
|
|
This function was taken from @tazjin's depot and adapted for my monorepo.
|
|
|
|
|
|
|
|
The derivation invokes nix.buildLisp.sbclWith and is built
|
|
|
|
asynchronously. The build output is included in the error
|
|
|
|
thrown on build failures."
|
|
|
|
(interactive "sAttribute: ")
|
2020-01-31 16:27:48 +01:00
|
|
|
(lexical-let* ((outbuf (get-buffer-create (format "*briefcase-out/%s*" attribute)))
|
|
|
|
(errbuf (get-buffer-create (format "*briefcase-errors/%s*" attribute)))
|
|
|
|
(expression (format "let depot = import <depot> {}; briefcase = import <briefcase> {}; in depot.nix.buildLisp.sbclWith [ briefcase.%s ]" attribute))
|
2020-01-23 23:02:13 +01:00
|
|
|
(command (list "nix-build" "-E" expression)))
|
2020-01-31 16:27:48 +01:00
|
|
|
(message "Acquiring Lisp for <briefcase>.%s" attribute)
|
|
|
|
(make-process :name (format "nix-build/%s" attribute)
|
2020-01-23 23:02:13 +01:00
|
|
|
:buffer outbuf
|
|
|
|
:stderr errbuf
|
|
|
|
:command command
|
|
|
|
:sentinel
|
|
|
|
(lambda (process event)
|
|
|
|
(unwind-protect
|
|
|
|
(pcase event
|
|
|
|
("finished\n"
|
|
|
|
(let* ((outpath (s-trim (with-current-buffer outbuf (buffer-string))))
|
|
|
|
(lisp-path (s-concat outpath "/bin/sbcl")))
|
2020-01-31 16:27:48 +01:00
|
|
|
(message "Acquired Lisp for <briefcase>.%s at %s" attribute lisp-path)
|
2020-01-23 23:02:13 +01:00
|
|
|
(sly lisp-path)))
|
|
|
|
(_ (with-current-buffer errbuf
|
|
|
|
(error "Failed to build '%s':\n%s" attribute (buffer-string)))))
|
|
|
|
(kill-buffer outbuf)
|
|
|
|
(kill-buffer errbuf))))))
|
|
|
|
|
2018-09-04 21:00:18 +02:00
|
|
|
(provide 'wpc-nix)
|
|
|
|
;;; wpc-nix.el ends here
|