[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: re2: Download sources from git.
From: |
guix-commits |
Subject: |
02/07: gnu: re2: Download sources from git. |
Date: |
Tue, 4 Dec 2018 15:14:27 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 56302fc1ec36906af4cdd9506cb894d8cd6f6b7e
Author: Marius Bakke <address@hidden>
Date: Tue Dec 4 16:13:17 2018 +0100
gnu: re2: Download sources from git.
* gnu/packages/regex.scm (re2)[source]: Change to GIT-FETCH.
---
gnu/packages/regex.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/regex.scm b/gnu/packages/regex.scm
index c05d819..533fa41 100644
--- a/gnu/packages/regex.scm
+++ b/gnu/packages/regex.scm
@@ -23,6 +23,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix utils))
@@ -32,12 +33,12 @@
(version "2018-10-01")
(home-page "https://github.com/google/re2")
(source (origin
- (method url-fetch)
- (uri (string-append home-page "/archive/" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "10fsxsj3yip34hp2zl5rw8h2x2lgnp83fwrh7m0qfd9m99qrf4x3"))))
+ "086n0ldr2sqvybck9r0vc302yspj0x7nq554siadspfl1in8ysf6"))))
(build-system gnu-build-system)
(arguments
`(#:modules ((guix build gnu-build-system)
- branch master updated (69a64ec -> b4c684c), guix-commits, 2018/12/04
- 06/07: gnu: samba.scm: Sort module imports., guix-commits, 2018/12/04
- 04/07: gnu: samba: Update to 4.9.3., guix-commits, 2018/12/04
- 07/07: gnu: mbedtls-apache: Update to 2.14.1 [fixes CVE-2018-19608]., guix-commits, 2018/12/04
- 03/07: gnu: re2: Update to 2018-12-01., guix-commits, 2018/12/04
- 01/07: gnu: python-django: Update to 1.11.17., guix-commits, 2018/12/04
- 05/07: gnu: ldb: Update to 1.4.3., guix-commits, 2018/12/04
- 02/07: gnu: re2: Download sources from git.,
guix-commits <=