Merge with master

This commit is contained in:
Sameer Rahmani 2020-05-26 19:22:35 +01:00
parent 9d606f49bc
commit 24b9d768b2
2 changed files with 5 additions and 3 deletions

View File

@ -97,8 +97,7 @@
(defun fpkg-initialize-once ()
"Initilize FPKG only once."
(when (not fpkg-initilized-p)
(fpkg-initialize)
(straight-use-package 'use-package)))
(fpkg-initialize)))
(defun official-extension-p (args)
@ -125,6 +124,7 @@
`(fg42-install-extension ,(eval pkgname))
`(use-package ,(eval pkgname) ,@details)))
(defun depends-on (pkgname &rest args)
"Install the package PKGNAME with respect to the ARGS."
(let ((pkg (apply 'make-fpkg-dependency :name pkgname args)))

View File

@ -31,8 +31,10 @@
(defsystem FG42
"FG42 implemented in term of systems and this is the default system."
:start (lambda (system) (message "hooray!"))
:fpkg-backend-path ".fpkg-v3"
:start (lambda (system)
(fg42/start! system))
:extensions '(fg42-elisp))