From 3fe31e37a9c92a413530cb86a58921af6b407706 Mon Sep 17 00:00:00 2001 From: Rovanion Luckey Date: Sat, 21 Oct 2023 23:05:01 +0200 Subject: [PATCH] gnu: musescore: Update to 4.1.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/music.scm (musescore): Update to 4.1.1. [source]: Remove deletion of “thirdparty/freetype” from snippet. Signed-off-by: Ludovic Courtès Change-Id: If1c8e6ddd5bfa30c24ee0e8ef29c945242905d74 --- gnu/packages/music.scm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 85be6f6151..b5f7d882e4 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -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"))))))