guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/19: gnu: java-plexus-io: Don't use unstable tarball.


From: guix-commits
Subject: 07/19: gnu: java-plexus-io: Don't use unstable tarball.
Date: Mon, 30 Mar 2020 03:10:14 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 48fe942c8578f52ed584691d3b581f789282a409
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Mar 30 09:01:18 2020 +0300

    gnu: java-plexus-io: Don't use unstable tarball.
    
    * gnu/packages/java.scm (java-plexus-io)[source]: Download using git-fetch.
---
 gnu/packages/java.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index a3ea084..f04dfe0 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -3728,12 +3728,14 @@ implementation.")
     (name "java-plexus-io")
     (version "3.0.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append 
"https://github.com/codehaus-plexus/plexus-io";
-                                  "/archive/plexus-io-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/codehaus-plexus/plexus-io";)
+                     (commit (string-append "plexus-io-" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0f2j41kihaymxkpbm55smpxjja235vad8cgz94frfy3ppcp021dw"))))
+                "1h4q9l2j9sfbscvxpnyy2hazi0r83h3am86y4r959wrl1b24xxwd"))))
     (build-system ant-build-system)
     (arguments
      `(#:jar-name "plexus-io.jar"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]