2017-11-13 22:47:28 +00:00
|
|
|
{ stdenv, lib, fetchurl, undmg }:
|
2017-02-26 08:59:20 +00:00
|
|
|
|
|
|
|
let
|
2017-11-13 22:47:28 +00:00
|
|
|
versionComponents = [ "2" "1" ];
|
|
|
|
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 {
|
2017-11-13 22:47:28 +00:00
|
|
|
url = "ftp://ftp.osuosl.org/pub/musescore/releases/MuseScore-${concatStringsSep "." (take 3 versionComponents)}/MuseScore-${version}.dmg";
|
|
|
|
sha256 = "19xkaxlkbrhvfip6n3iw6q7463ngr6y5gfisrpjqg2xl2igyl795";
|
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/";
|
2017-02-26 08:59:20 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.darwin;
|
2021-03-11 03:00:12 +00:00
|
|
|
maintainers = [];
|
2020-04-01 02:11:51 +01:00
|
|
|
repositories.git = "https://github.com/musescore/MuseScore";
|
2017-02-26 08:59:20 +00:00
|
|
|
};
|
|
|
|
}
|