guix-commits
[Top][All Lists]
Advanced

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

02/25: gnu: nss: Add which to to native inputs and use regular nspr.


From: guix-commits
Subject: 02/25: gnu: nss: Add which to to native inputs and use regular nspr.
Date: Sat, 15 Apr 2023 00:27:32 -0400 (EDT)

apteryx pushed a commit to branch core-updates
in repository guix.

commit 20707a06d27f47d7034519b79175ee21c5546fcb
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Apr 14 20:57:45 2023 -0400

    gnu: nss: Add which to to native inputs and use regular nspr.
    
    * gnu/packages/nss.scm (nspr-next): Delete variable.
    (nss) [native-inputs]: Add which.
    [propagated-inputs]: Replace nspr-next with nspr.
    * gnu/packages/gnuzilla.scm (icecat-minimal): Likewise.
---
 gnu/packages/gnuzilla.scm |  2 +-
 gnu/packages/nss.scm      | 25 +++++--------------------
 2 files changed, 6 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 9b6744088f..617b356955 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -736,7 +736,7 @@ variable defined below.  It requires guile-json to be 
installed."
            mit-krb5
            hunspell
            libnotify
-           nspr-next
+           nspr
            nss
            shared-mime-info
            sqlite
diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm
index 19ca675730..7bb239dd27 100644
--- a/gnu/packages/nss.scm
+++ b/gnu/packages/nss.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020, 2021 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
-;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -32,6 +32,7 @@
   #:use-module (guix build-system mozilla)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (gnu packages)
+  #:use-module (gnu packages base)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
@@ -99,19 +100,6 @@ in the Mozilla clients.")
               (base32
                "0v3zds1id71j5a5si42a658fjz8nv2f6zp6w4gqrqmdr6ksz8sxv"))))))
 
-(define-public nspr-next
-  (package
-    (inherit nspr)
-    (version "4.35")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v";
-                    version "/src/nspr-" version ".tar.gz"))
-              (sha256
-               (base32
-                "13xwda56yhp1w7v02qvlxvlqiniw8kr4g3fxlljmv6wnlmz2k8vy"))))))
-
 (define-public nss
   (package
     (name "nss")
@@ -214,12 +202,9 @@ in the Mozilla clients.")
                 (copy-recursively "dist/public/nss" inc)
                 (copy-recursively (string-append obj "/bin") bin)
                 (copy-recursively (string-append obj "/lib") lib)))))))
-    (inputs
-     (list sqlite zlib))
-    (propagated-inputs
-     (list nspr-next))                            ;required by nss.pc.
-    (native-inputs
-     (list perl libfaketime))           ;for tests
+    (inputs (list sqlite zlib))
+    (propagated-inputs (list nspr))               ;required by nss.pc.
+    (native-inputs (list perl libfaketime which)) ;for tests
 
     ;; The NSS test suite takes around 48 hours on Loongson 3A (MIPS) when
     ;; another build is happening concurrently on the same machine.



reply via email to

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