diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-25 19:52:47 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-25 19:53:05 +0200 |
commit | cbeafb35e8d29fe876cfc78df0d22ecd49e8f39a (patch) | |
tree | 7505b497f1132d8fd14545ed60c10bb78981eb0f | |
parent | 199f9e91708884ccf16e6e5448102820f18b11f6 (diff) | |
download | guix-cbeafb35e8d29fe876cfc78df0d22ecd49e8f39a.tar.gz guix-cbeafb35e8d29fe876cfc78df0d22ecd49e8f39a.zip |
gnu: marble-qt: Fix source file name.
* gnu/packages/geo.scm (marble-qt)[source]: Add a FILE-NAME field.
-rw-r--r-- | gnu/packages/geo.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index ebcce5d71a..1be6d14974 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2437,9 +2437,9 @@ using third-party geocoders and other data sources.") (uri (git-reference (url "https://invent.kde.org/education/marble.git/") (commit commit))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0m0sf3sddaib7vc5lhbmh7ziw07p1hahg02f65sgfylyl5f5kj92")) + (base32 "0m0sf3sddaib7vc5lhbmh7ziw07p1hahg02f65sgfylyl5f5kj92")) (patches (search-patches "marble-qt-add-qt-headers.patch")))) (build-system cmake-build-system) |