guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: nettle: Make version 3 the default.


From: Ludovic Courtès
Subject: 01/04: gnu: nettle: Make version 3 the default.
Date: Thu, 09 Apr 2015 19:11:21 +0000

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

commit 0be199c976332fd655c547bb122d1214cc9bc452
Author: Ludovic Courtès <address@hidden>
Date:   Thu Apr 9 18:32:32 2015 +0200

    gnu: nettle: Make version 3 the default.
    
    * gnu/packages/nettle.scm (nettle): Rename to...
      (nettle-2): ... this.
      (nettle-3): Rename to...
      (nettle): ... this.
    * gnu/packages/gnutls.scm (gnutls): Use NETTLE-2.
    * gnu/packages/lsh.scm (lsh): Likewise.
---
 gnu/packages/gnutls.scm |    2 +-
 gnu/packages/lsh.scm    |    4 ++--
 gnu/packages/nettle.scm |    8 ++++----
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/gnutls.scm b/gnu/packages/gnutls.scm
index b2176ec..ec427e3 100644
--- a/gnu/packages/gnutls.scm
+++ b/gnu/packages/gnutls.scm
@@ -140,7 +140,7 @@ living in the same process.")
     (propagated-inputs
      ;; These are all in the 'Requires.private' field of gnutls.pc.
      `(("libtasn1" ,libtasn1)
-       ("nettle" ,nettle)
+       ("nettle" ,nettle-2)
        ("zlib" ,zlib)))
     (home-page "http://www.gnu.org/software/gnutls/";)
     (synopsis "Transport layer security library")
diff --git a/gnu/packages/lsh.scm b/gnu/packages/lsh.scm
index a931a11..0edf6b4 100644
--- a/gnu/packages/lsh.scm
+++ b/gnu/packages/lsh.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -91,7 +91,7 @@ basis for almost any application.")
        ("gperf" ,gperf)
        ("psmisc" ,psmisc)))                       ; for `killall'
     (inputs
-     `(("nettle" ,nettle)
+     `(("nettle" ,nettle-2)
        ("linux-pam" ,linux-pam)
 
        ;; 'rl.c' uses the 'CPPFunction' type, which is no longer in
diff --git a/gnu/packages/nettle.scm b/gnu/packages/nettle.scm
index 0df8f00..ae432c7 100644
--- a/gnu/packages/nettle.scm
+++ b/gnu/packages/nettle.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -24,7 +24,7 @@
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages m4))
 
-(define-public nettle
+(define-public nettle-2
   (package
     (name "nettle")
     (version "2.7.1")
@@ -53,10 +53,10 @@ cryptographic toolkits for object-oriented languages or in 
applications
 themselves.")
     (license gpl2+)))
 
-(define-public nettle-3
+(define-public nettle
   ;; This version is not API-compatible with version 2.  In particular GnuTLS
   ;; cannot use it yet.  So keep it separate.
-  (package (inherit nettle)
+  (package (inherit nettle-2)
     (version "3.0")
     (source (origin
               (method url-fetch)



reply via email to

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