dfsg-main: Add express-irc
This commit is contained in:
parent
2d2406c19e
commit
6f3ca6388f
2 changed files with 10 additions and 1 deletions
|
@ -16,6 +16,7 @@ env:
|
|||
- FILE: dfsg/main/equate.scm
|
||||
- FILE: dfsg/main/eterm.scm
|
||||
- FILE: dfsg/main/etui.scm
|
||||
- FILE: dfsg/main/express.scm
|
||||
- FILE: dfsg/main/minesviiper.scm
|
||||
- FILE: dfsg/main/moreutils.scm
|
||||
#- FILE: dfsg/main/mupdf.scm # cannot find 'my-mupdf-1.17'
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
;;; You should have received a copy of the GNU General Public License
|
||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (wip express)
|
||||
(define-module (dfsg main express)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix packages)
|
||||
|
@ -50,6 +50,14 @@
|
|||
(lambda _
|
||||
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
||||
(setenv "HOME" "/tmp")
|
||||
#t))
|
||||
(add-after 'configure 'unbundle-fonts
|
||||
;; Ideally we'd do this unbundling in a snippet but it has to be
|
||||
;; after the configure(!!) phase.
|
||||
(lambda _
|
||||
(delete-file-recursively "data/fonts")
|
||||
(substitute* "data/Makefile"
|
||||
(("fonts") ""))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
Loading…
Reference in a new issue