2017-11-13 22:47:28 +00:00
|
|
|
{ stdenv, lib, fetchurl, undmg }:
|
2017-02-26 08:59:20 +00:00
|
|
|
|
|
|
|
let
|
2022-12-17 14:05:59 +00:00
|
|
|
versionComponents = [ "4" "0" "1" ];
|
2017-11-13 22:47:28 +00:00
|
|
|
appName = "MuseScore ${builtins.head versionComponents}";
|
2022-12-17 14:05:59 +00:00
|
|
|
ref = "230121751";
|
2017-02-26 08:59:20 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "musescore-darwin";
|
2023-01-21 22:06:40 +00:00
|
|
|
version = lib.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-12-17 14:05:59 +00:00
|
|
|
url = "https://github.com/musescore/MuseScore/releases/download/v${version}/MuseScore-${version}.${ref}.dmg";
|
|
|
|
hash = "sha256-tkIEV+tCS0SYh2TlC70/zEBUEOSg//EaSKDGA7kH/vo=";
|
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 01:11:51 +00:00
|
|
|
homepage = "https://musescore.org/";
|
2022-07-03 06:04:09 +00: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
|
|
|
};
|
|
|
|
}
|