diff options
| author | Xinglu Chen <public@yoctocell.xyz> | 2021-04-13 21:22:44 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-16 23:25:23 +0200 |
| commit | 7a6625e83f68f6408ff0a82b12e7a95c6b0cc096 (patch) | |
| tree | 9f467ec017aa5b9d10b8a6a9f016ef5c7921d8ab /gnu | |
| parent | c68070e4eefd25118b368bd7af872f65ab739fc7 (diff) | |
gnu: guile-git: Switch to 'git-fetch'.
* gnu/packages/guile.scm (guile-git)[source]: Use ‘git-fetch’ instead of
‘url-fetch’.
[native-inputs]: Add autoconf, automake, and texinfo.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/guile.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 813639ef7ee..1616991cca4 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm | |||
| @@ -779,18 +779,22 @@ type system, elevating types to first-class status.") | |||
| 779 | (version "0.5.0") | 779 | (version "0.5.0") |
| 780 | (home-page "https://gitlab.com/guile-git/guile-git.git") | 780 | (home-page "https://gitlab.com/guile-git/guile-git.git") |
| 781 | (source (origin | 781 | (source (origin |
| 782 | (method url-fetch) | 782 | (method git-fetch) |
| 783 | (uri (string-append "https://gitlab.com/guile-git/guile-git/uploads/" | 783 | (uri (git-reference |
| 784 | "30be542d90619ca844dd3a3ed2e13808/guile-git-" | 784 | (url home-page) |
| 785 | version ".tar.gz")) | 785 | (commit (string-append "v" version)))) |
| 786 | (file-name (git-file-name name version)) | ||
| 786 | (sha256 | 787 | (sha256 |
| 787 | (base32 | 788 | (base32 |
| 788 | "1j39c1cq9cbwir90mpnbdijpbwh7wkxampgl2r177bv8bfw6y203")))) | 789 | "1hqw3jy81cnsgybsbnfvwvhv1bajwq662hikkrr6dcgky6yspsxx")))) |
| 789 | (build-system gnu-build-system) | 790 | (build-system gnu-build-system) |
| 790 | (arguments | 791 | (arguments |
| 791 | `(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings | 792 | `(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings |
| 792 | (native-inputs | 793 | (native-inputs |
| 793 | `(("pkg-config" ,pkg-config) | 794 | `(("pkg-config" ,pkg-config) |
| 795 | ("autoconf" ,autoconf) | ||
| 796 | ("automake" ,automake) | ||
| 797 | ("texinfo" ,texinfo) | ||
| 794 | ("guile" ,guile-3.0) | 798 | ("guile" ,guile-3.0) |
| 795 | ("guile-bytestructures" ,guile-bytestructures))) | 799 | ("guile-bytestructures" ,guile-bytestructures))) |
| 796 | (inputs | 800 | (inputs |
