guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: busybox: Update to 1.25.0.


From: Efraim Flashner
Subject: 01/02: gnu: busybox: Update to 1.25.0.
Date: Thu, 30 Jun 2016 16:28:49 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit 2e5505e5eac3bd0170af5e62b95fadcc9aa42794
Author: Efraim Flashner <address@hidden>
Date:   Thu Jun 30 19:04:08 2016 +0300

    gnu: busybox: Update to 1.25.0.
    
    * gnu/packages/busybox.scm (busybox): Update to 1.25.0.
    [native-inputs]: Add which.
---
 gnu/packages/busybox.scm |   12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm
index e2d6cf8..eab2bef 100644
--- a/gnu/packages/busybox.scm
+++ b/gnu/packages/busybox.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014 John Darrington  <address@hidden>
+;;; Copyright © 2014 John Darrington <address@hidden>
+;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -29,15 +30,15 @@
 (define-public busybox
   (package
     (name "busybox")
-    (version "1.22.1")
+    (version "1.25.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
-                    "http://www.busybox.net/downloads/"; name "-"
+                    "https://www.busybox.net/downloads/"; name "-"
                     version ".tar.bz2"))
               (sha256
                (base32
-                "12v7nri79v8gns3inmz4k24q7pcnwi00hybs0wddfkcy1afh42xf"))))
+                "1z52mh6prhd6v47qryz4rvng5r1z0am6masrnigq06zfhmlf03ss"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -96,11 +97,12 @@
     (native-inputs `(("perl" ,perl) ; needed to generate the man pages 
(pod2man)
                      ;; The following are needed by the tests.
                      ("inetutils" ,inetutils)
+                     ("which" ,(@ (gnu packages base) which))
                      ("zip" ,zip)))
     (synopsis "Many common UNIX utilities in a single executable")
     (description "BusyBox combines tiny versions of many common UNIX utilities
 into a single small executable.  It provides a fairly complete environment for
 any small or embedded system.")
-    (home-page "http://www.busybox.net";)
+    (home-page "https://www.busybox.net";)
     ;; Some files are gplv2+
     (license gpl2)))



reply via email to

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