summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <[email protected]>2020-01-31 09:23:26 +0100
committerLudovic Courtès <[email protected]>2020-01-31 17:06:15 +0100
commit69961ac3b9db2dbb99abb5c45ff6be3a9c01b5de (patch)
treef18add0544f5c40c345e1dd94bd42c7307dc78cc
parentaa2e83cce2b4a4d20e1d68edaa1aaa0c590ad72e (diff)
gnu: libgc: Add version 8.0.4.
* gnu/packages/bdw-gc.scm (libgc-8.0): New variable.
-rw-r--r--gnu/packages/bdw-gc.scm14
1 files changed, 13 insertions, 1 deletions
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index 7196ffcd32..cc492105d1 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2016, 2017 Ludovic Courtès <[email protected]>
+;;; Copyright © 2012, 2013, 2014, 2016, 2017, 2020 Ludovic Courtès <[email protected]>
;;; Copyright © 2014 Mark H Weaver <[email protected]>
;;; Copyright © 2016, 2018 Leo Famulari <[email protected]>
;;; Copyright © 2017 Rene Saavedra <[email protected]>
@@ -91,6 +91,18 @@ C or C++ programs, though that is not its primary goal.")
(license (x11-style (string-append home-page "license.txt")))))
+(define-public libgc-8.0
+ (package/inherit
+ libgc
+ (version "8.0.4")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/ivmai/bdwgc/releases"
+ "/download/v" version "/gc-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1798rp3mcfkgs38ynkbg2p47bq59pisrc6mn0l20pb5iczf0ssj3"))))))
+
(define-public libgc/back-pointers
(package
(inherit libgc)