gnu: musescore: Update to 4.1.1.

* gnu/packages/music.scm (musescore): Update to 4.1.1.
[source]: Remove deletion of “thirdparty/freetype” from snippet.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: If1c8e6ddd5bfa30c24ee0e8ef29c945242905d74
This commit is contained in:
Rovanion Luckey 2023-10-21 23:05:01 +02:00 committed by Ludovic Courtès
parent 26a403f357
commit 3fe31e37a9
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 6 deletions

View File

@ -4982,7 +4982,7 @@ includes LV2 plugins and a JACK standalone client.")
(define-public musescore
(package
(name "musescore")
(version "4.0.2")
(version "4.1.1")
(source
(origin
(method git-fetch)
@ -4991,14 +4991,11 @@ includes LV2 plugins and a JACK standalone client.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1yri94xs4xw0lsvmk5q7bqnpgmdadchfn08r7bb2y07jsi8qgm6w"))
(base32 "12h26k9qnsq027gdpch579nchwrqva1ymwm2fj5xmlh0aayrwy4d"))
(modules '((guix build utils)))
(snippet
'(begin
;; Remove unused libraries...
(for-each delete-file-recursively
'("thirdparty/freetype"))
;; ... and precompiled binaries.
;; Delete precompiled binaries.
(delete-file-recursively "src/diagnostics/crashpad_handler")
(substitute* "src/diagnostics/CMakeLists.txt"
(("install") "#install"))))))