mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alda";
|
|
version = "2.2.3";
|
|
|
|
src_alda = fetchurl {
|
|
url = "https://alda-releases.nyc3.digitaloceanspaces.com/${version}/client/linux-amd64/alda";
|
|
hash = "sha256-cyOAXQ3ITIgy4QusjdYBNmNIzB6BzfbQEypvJbkbvWo=";
|
|
};
|
|
|
|
src_player = fetchurl {
|
|
url = "https://alda-releases.nyc3.digitaloceanspaces.com/${version}/player/non-windows/alda-player";
|
|
hash = "sha256-HsX0mNWrusL2FaK2oK8xhmr/ai+3ZiMmrJk7oS3b93g=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
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}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Music programming language for musicians";
|
|
homepage = "https://alda.io";
|
|
license = licenses.epl10;
|
|
maintainers = [ maintainers.ericdallo ];
|
|
platforms = jre.meta.platforms;
|
|
};
|
|
}
|