summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-05-23 00:11:38 +0200
committerLudovic Courtès <ludo@gnu.org>2013-05-23 00:11:38 +0200
commita10f6f7bf7e61794ac65b4eddb1683ab528d1bda (patch)
tree174acf2c164bba188d7bb41cc8b16eafb6a59611
parentbb3fe7fcfe14ca006956a3b606032d0ef2d816dd (diff)
gnu: libgc: Add 7.2d.
* gnu/packages/bdw-gc.scm (libgc-7.2): New variable.
-rw-r--r--gnu/packages/bdw-gc.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index c338eab871a..e119fc0bb94 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -58,3 +58,17 @@ C or C++ programs, though that is not its primary goal.")
58 ;; permissive X11-style license: 58 ;; permissive X11-style license:
59 ;; http://www.hpl.hp.com/personal/Hans_Boehm/gc/license.txt 59 ;; http://www.hpl.hp.com/personal/Hans_Boehm/gc/license.txt
60 (license x11))) 60 (license x11)))
61
62(define-public libgc-7.2
63 ;; This is the latest final release of the 7.2 series.
64 ;; TODO: Use it as the default when doing a core-updates.
65 (package (inherit libgc)
66 (version "7.2d")
67 (source (origin
68 (method url-fetch)
69 (uri (string-append
70 "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-"
71 version ".tar.gz"))
72 (sha256
73 (base32
74 "0phwa5driahnpn79zqff14w9yc8sn3599cxz91m78hqdcpl0mznr"))))))