2021-12-19 01:06:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre }:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "alda";
|
2022-04-27 09:35:20 +00:00
|
|
|
version = "2.2.3";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
src_alda = fetchurl {
|
|
|
|
url = "https://alda-releases.nyc3.digitaloceanspaces.com/${version}/client/linux-amd64/alda";
|
2022-04-27 09:35:20 +00:00
|
|
|
hash = "sha256-cyOAXQ3ITIgy4QusjdYBNmNIzB6BzfbQEypvJbkbvWo=";
|
2021-12-19 01:06:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src_player = fetchurl {
|
|
|
|
url = "https://alda-releases.nyc3.digitaloceanspaces.com/${version}/player/non-windows/alda-player";
|
2022-04-27 09:35:20 +00:00
|
|
|
hash = "sha256-HsX0mNWrusL2FaK2oK8xhmr/ai+3ZiMmrJk7oS3b93g=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
let
|
|
|
|
binPath = lib.makeBinPath [ jre ];
|
|
|
|
in
|
|
|
|
''
|
|
|
|
install -D $src_alda $out/bin/alda
|
|
|
|
install -D $src_player $out/bin/alda-player
|
|
|
|
|
|
|
|
wrapProgram $out/bin/alda --prefix PATH : $out/bin:${binPath}
|
|
|
|
wrapProgram $out/bin/alda-player --prefix PATH : $out/bin:${binPath}
|
|
|
|
'';
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Music programming language for musicians";
|
2020-08-20 17:08:02 +00:00
|
|
|
homepage = "https://alda.io";
|
|
|
|
license = licenses.epl10;
|
|
|
|
maintainers = [ maintainers.ericdallo ];
|
|
|
|
platforms = jre.meta.platforms;
|
|
|
|
};
|
|
|
|
}
|