diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2018-08-14 22:17:24 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-08-15 14:29:56 -0400 |
commit | 7bcc34050b2e1dc4bc3aa832b08ec123129d71be (patch) | |
tree | 7ba7039cfc504d7ff15845dda7b9a65ebfd8f643 /gnu/packages/music.scm | |
parent | 8a63a4df5136a72241380fbeecf35a2e6208bb62 (diff) | |
download | guix-7bcc34050b2e1dc4bc3aa832b08ec123129d71be.tar guix-7bcc34050b2e1dc4bc3aa832b08ec123129d71be.tar.gz |
gnu: clementine: Fix creating initial database.
It seems a recent version of sqlite broke Clementine's first startup. It turns
out we can patch clementine to fix the problem instead of providing a different
sqlite package:
<https://github.com/clementine-player/Clementine/pull/5669>
* gnu/packages/databases.scm (sqlite-with-fts3): Remove.
* gnu/packages/music.scm (clementine)[inputs]: Replace sqlite-with-fts3 with
sqlite.
[source]: Add clementine-fix-sqlite.patch.
* gnu/packages/patches/clementine-fix-sqlite.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index cf1e0f82f4..7d4aeff990 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -238,7 +238,8 @@ score, keyboard, guitar, drum and controller views.") "tinysvcmdns")) #t)) (patches (search-patches "clementine-use-openssl.patch" - "clementine-remove-crypto++-dependency.patch")))) + "clementine-remove-crypto++-dependency.patch" + "clementine-fix-sqlite.patch")))) (build-system cmake-build-system) (arguments '(#:test-target "clementine_test" @@ -281,7 +282,7 @@ score, keyboard, guitar, drum and controller views.") ("pulseaudio" ,pulseaudio) ("qtbase" ,qtbase) ("qtx11extras" ,qtx11extras) - ("sqlite" ,sqlite-with-fts3) + ("sqlite" ,sqlite) ("sparsehash" ,sparsehash) ("taglib" ,taglib))) (home-page "http://clementine-player.org") |