summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEric Bavier <bavier@member.fsf.org>2018-12-02 17:53:14 -0600
committerEric Bavier <bavier@member.fsf.org>2018-12-02 17:56:05 -0600
commit6efccabe4e2e3ea1bd14cd0e81bdb83d5f6baaea (patch)
tree1cb4e31f1dec5bdcf552a7906a3d33df10eae039 /gnu
parent6776af04d4b65c5a9a07784307a6abe395b6f480 (diff)
guile-json: Download source from savannah.
* gnu/packages/guile.scm (guile-json)[source]: Download tarball from savannah. Remove 'file-name' field. [native-inputs]: Remove autoconf and automake; tarball is bootstrapped.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/guile.scm11
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 41f2b16e0aa..7fcb4a400c8 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -929,16 +929,13 @@ for Guile\".")
929 (home-page "https://github.com/aconchillo/guile-json") 929 (home-page "https://github.com/aconchillo/guile-json")
930 (source (origin 930 (source (origin
931 (method url-fetch) 931 (method url-fetch)
932 (uri (string-append home-page "/archive/" 932 (uri (string-append "https://download.savannah.nongnu.org/releases/"
933 version ".tar.gz")) 933 name "/" name "-" version ".tar.gz"))
934 (file-name (string-append name "-" version ".tar.gz"))
935 (sha256 934 (sha256
936 (base32 935 (base32
937 "02kqv0q98fmchn7i4y7ycmrjlh4b2c93ij0z7k036qwpp204w4gh")))) 936 "15gnb84d7hpazqhskkf3g9z4r6knw54wfj4ch5270kakz1lp70c9"))))
938 (build-system gnu-build-system) 937 (build-system gnu-build-system)
939 (native-inputs `(("autoconf" ,autoconf) 938 (native-inputs `(("pkg-config" ,pkg-config)
940 ("automake" ,automake)
941 ("pkg-config" ,pkg-config)
942 ("guile" ,guile-2.2))) 939 ("guile" ,guile-2.2)))
943 (inputs `(("guile" ,guile-2.2))) 940 (inputs `(("guile" ,guile-2.2)))
944 (synopsis "JSON module for Guile") 941 (synopsis "JSON module for Guile")