diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-26 20:21:51 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-26 21:02:23 +0200 |
commit | 71dc411b21318bea8f13ff0212a96bda2e13304f (patch) | |
tree | f6ea1f53d17c6a6a35c8e90e4d3bac990dfa11a7 /gnu | |
parent | 616fa14b8cf106154865974d17b1b34b25220ec8 (diff) | |
download | guix-71dc411b21318bea8f13ff0212a96bda2e13304f.tar.gz |
gnu: grilo: Update to 0.3.12.
* gnu/packages/gnome.scm (grilo): Update to 0.3.12. [source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 5664f76ae2..975659457f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5646,16 +5646,15 @@ as possible!") (define-public grilo (package (name "grilo") - (version "0.3.10") + (version "0.3.12") (source (origin (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" + (uri (string-append "mirror://gnome/sources/grilo/" (version-major+minor version) "/" - name "-" version ".tar.xz")) + "grilo-" version ".tar.xz")) (sha256 - (base32 - "1s7ilyywf18q26aj5c4709kfizqywjlnacp4jzmj9v9i9kkv4i3y")))) + (base32 "0w8sq5g6g1rg85h53vbll8va70fcp6082mlpmy98aa03444ddyyv")))) (build-system meson-build-system) (native-inputs `(("glib:bin" ,glib "bin") ; for glib-mkenums and glib-genmarshal |