guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: openmw: Don't use unstable tarball.


From: guix-commits
Subject: 03/03: gnu: openmw: Don't use unstable tarball.
Date: Tue, 23 Jun 2020 13:23:52 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit aa246eaa6b338fc6509bd5e6b93fa23121b2c95c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jun 23 19:16:22 2020 +0300

    gnu: openmw: Don't use unstable tarball.
    
    * gnu/packages/game-development.scm (openmw)[source]: Download using
    git-fetch.
---
 gnu/packages/game-development.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 7eabf46..74ab51f 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1492,13 +1492,14 @@ of use.")
     (version "0.46.0")
     (source
      (origin
-       (method url-fetch)
-       (uri
-        (string-append "https://github.com/OpenMW/openmw/archive/";
-                       "openmw-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/OpenMW/openmw";)
+              (commit (string-append "openmw-" version))))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0n7x39kwhwmi6ly9hd7yc6dhlrmmdmx30ahc46kmlzzn2n7mm8q7"))))
+         "0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f                      ; No test target



reply via email to

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