nixpkgs/pkgs/development/interpreters/alda/default.nix

28 lines
654 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, jre }:
2020-06-20 17:25:02 +02:00
stdenv.mkDerivation rec {
pname = "alda";
2021-03-10 18:15:03 +01:00
version = "1.4.4";
2020-06-20 17:25:02 +02:00
src = fetchurl {
url = "https://github.com/alda-lang/alda/releases/download/${version}/alda";
2021-03-10 18:15:03 +01:00
sha256 = "sha256-zIq8coSh4B9VGrixkQfhySK7qhlFG2p7O0suvbiScKY=";
2020-06-20 17:25:02 +02:00
};
dontUnpack = true;
installPhase = ''
install -Dm755 $src $out/bin/alda
sed -i -e '1 s!java!${jre}/bin/java!' $out/bin/alda
'';
meta = with lib; {
description = "A music programming language for musicians";
2020-06-20 17:25:02 +02:00
homepage = "https://alda.io";
license = licenses.epl10;
maintainers = [ maintainers.ericdallo ];
platforms = jre.meta.platforms;
};
}