2017-11-13 22:47:28 +00:00
|
|
|
{ stdenv, lib, fetchurl, undmg }:
|
2017-02-26 08:59:20 +00:00
|
|
|
|
|
|
|
let
|
2022-07-03 07:04:09 +01:00
|
|
|
versionComponents = [ "3" "6" "2" "548020600" ];
|
2017-11-13 22:47:28 +00:00
|
|
|
appName = "MuseScore ${builtins.head versionComponents}";
|
2017-02-26 08:59:20 +00:00
|
|
|
in
|
|
|
|
|
2017-11-13 22:47:28 +00:00
|
|
|
with lib;
|
|
|
|
|
2017-02-26 08:59:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "musescore-darwin";
|
2019-09-09 00:38:31 +01:00
|
|
|
version = concatStringsSep "." versionComponents;
|
2017-02-26 08:59:20 +00:00
|
|
|
|
2020-11-14 14:06:33 +00:00
|
|
|
# The disk image contains the .app and a symlink to /Applications.
|
|
|
|
sourceRoot = "${appName}.app";
|
|
|
|
|
2017-02-26 08:59:20 +00:00
|
|
|
src = fetchurl {
|
2022-07-03 07:04:09 +01:00
|
|
|
url = "https://github.com/musescore/MuseScore/releases/download/v${concatStringsSep "." (take 3 versionComponents)}/MuseScore-${version}.dmg";
|
|
|
|
sha256 = "sha256-lHckfhTTrDzaGwlbnZ5w0O1gMPbRmrmgATIGMY517l0=";
|
2017-02-26 08:59:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ undmg ];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/Applications/${appName}.app"
|
|
|
|
cp -R . "$out/Applications/${appName}.app"
|
|
|
|
chmod a+x "$out/Applications/${appName}.app/Contents/MacOS/mscore"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-02-26 08:59:20 +00:00
|
|
|
description = "Music notation and composition software";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://musescore.org/";
|
2022-07-03 07:04:09 +01:00
|
|
|
license = licenses.gpl3Only;
|
2017-02-26 08:59:20 +00:00
|
|
|
platforms = platforms.darwin;
|
2021-03-11 03:00:12 +00:00
|
|
|
maintainers = [];
|
2017-02-26 08:59:20 +00:00
|
|
|
};
|
|
|
|
}
|