diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-03-13 21:33:44 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-03-13 21:48:27 +0200 |
commit | 29a3905452a35f4e6e59c4e0eb3e9a27178d15fc (patch) | |
tree | 3ec92ee41f270a1343cf86a9f84172bd2025ce0c /gnu | |
parent | 4510f976dcbff4b509ba635c9c8d2950660b343b (diff) | |
download | guix-29a3905452a35f4e6e59c4e0eb3e9a27178d15fc.tar guix-29a3905452a35f4e6e59c4e0eb3e9a27178d15fc.tar.gz |
gnu: tinyxml2: Declare a source file-name.
* gnu/packages/xml.scm (tinyxml2)[source]: Declare a source file-name.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xml.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index bde959a284..729fa56a30 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1061,9 +1061,10 @@ C++ programming language.") (method url-fetch) (uri (string-append "https://github.com/leethomason/tinyxml2/archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "083z4r4khcndxi9k840lcr48sqxvar4gpsnf749xfdn1bkr8xcql")))) + (base32 + "083z4r4khcndxi9k840lcr48sqxvar4gpsnf749xfdn1bkr8xcql")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests |