diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:26:42 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:09 +0200 |
commit | c34dda9443efa4479fd244d178f5b511e96128a3 (patch) | |
tree | 2f94d32e5eb27ef128912a1bee1118be236f7ff9 /gnu | |
parent | bcee4a0d88cb981f06ef6dfcef230efc46117885 (diff) | |
download | guix-c34dda9443efa4479fd244d178f5b511e96128a3.tar.gz |
gnu: emacs-org2web: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-org2web)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3ed48819b3..6c7d54a997 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6888,15 +6888,15 @@ and lambdas.") (package (name "emacs-org2web") (version "0.9.1") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/tumashu/org2web/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tumashu/org2web.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wsvfn409a2ivbich8b8zqza78sprirg4bl7igx536ydqclmi0n7")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash) |