diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-01-31 09:23:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-01-31 17:06:15 +0100 |
commit | 69961ac3b9db2dbb99abb5c45ff6be3a9c01b5de (patch) | |
tree | f18add0544f5c40c345e1dd94bd42c7307dc78cc /gnu | |
parent | aa2e83cce2b4a4d20e1d68edaa1aaa0c590ad72e (diff) | |
download | guix-69961ac3b9db2dbb99abb5c45ff6be3a9c01b5de.tar guix-69961ac3b9db2dbb99abb5c45ff6be3a9c01b5de.tar.gz |
gnu: libgc: Add version 8.0.4.
* gnu/packages/bdw-gc.scm (libgc-8.0): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bdw-gc.scm | 14 |
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 <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014, 2016, 2017, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name> ;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org> @@ -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) |