AboutSummaryRefsLogTreeCommitDiffStats
path: root/build-aux/guix.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2019-04-07 19:37:49 +0300
committerMathieu Lirzin <mthl@gnu.org>2019-04-07 23:17:27 +0200
commit7d4af7781f24d2220447006ff3d05f8e6ae3cceb (patch)
tree34c3698c2f3827c2fb002c2142b4ed3eaf37df5f /build-aux/guix.scm
parentba2975649aad5de50d1322c135550d8532d8358d (diff)
downloadmcron-7d4af7781f24d2220447006ff3d05f8e6ae3cceb.tar.gz
mcron-7d4af7781f24d2220447006ff3d05f8e6ae3cceb.tar.bz2
mcron-7d4af7781f24d2220447006ff3d05f8e6ae3cceb.zip
build: Update guix.scm
* build-aux/guix.scm: Inherit from mcron. <arguments>: Remove extra 'bootstrap phase. <inputs>: Build with guile@2.2. <native-inputs>: Add tzdata for tests. Signed-off-by: Mathieu Lirzin <mthl@gnu.org>
Diffstat (limited to 'build-aux/guix.scm')
-rw-r--r--build-aux/guix.scm13
1 files changed, 5 insertions, 8 deletions
diff --git a/build-aux/guix.scm b/build-aux/guix.scm
index 72db610..c0bb6a8 100644
--- a/build-aux/guix.scm
+++ b/build-aux/guix.scm
@@ -1,6 +1,7 @@
;;;; guix.scm -- Guix package definition
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
;;; Copyright © 2018 宋文武 <iyzsong@member.fsf.org>
+;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Mcron.
;;;
@@ -39,20 +40,16 @@
(or (current-source-directory) "."))
(package
- (inherit (specification->package "mcron2"))
+ (inherit (specification->package "mcron"))
(version "1.1.2")
(source (local-file (dirname %srcdir) #:recursive? #t
#:select? keep-mcron-file?))
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-before 'configure 'bootstrap
- (λ _ (zero? (system* "autoreconf" "-vfi")))))))
(inputs
- `(("guile" ,(specification->package "guile@2.0"))))
+ `(("guile" ,(specification->package "guile@2.2"))))
(native-inputs
`(("autoconf" ,(specification->package "autoconf"))
("automake" ,(specification->package "automake"))
("help2man" ,(specification->package "help2man"))
("pkg-config" ,(specification->package "pkg-config"))
- ("texinfo" ,(specification->package "texinfo")))))
+ ("texinfo" ,(specification->package "texinfo"))
+ ("tzdata" ,(specification->package "tzdata")))))