7dfb190656
This commit updates the osu-lazer-bin package from 2023.1008.1 to 2023.1026.0. The release notes for this version can be seen here: https://github.com/ppy/osu/releases/tag/2023.1026.0
84 lines
2.4 KiB
Nix
84 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, fetchzip
|
|
, appimageTools
|
|
}:
|
|
|
|
let
|
|
pname = "osu-lazer-bin";
|
|
version = "2023.1026.0";
|
|
name = "${pname}-${version}";
|
|
|
|
osu-lazer-bin-src = {
|
|
aarch64-darwin = {
|
|
url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Apple.Silicon.zip";
|
|
sha256 = "sha256-6IaN189cV/ORP77zrjdcCPwPzNR/W6JmrZXVasCx8MQ=";
|
|
};
|
|
x86_64-darwin = {
|
|
url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Intel.zip";
|
|
sha256 = "sha256-XrlajKT3GLjfj800mULj9iwkF9Bvx9Rlz56K6welq2U=";
|
|
};
|
|
x86_64-linux = {
|
|
url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage";
|
|
sha256 = "sha256-yr7PtBUBE0tB0giAE8aQCNJvxS/tMzlLWpJ3NyosQZk=";
|
|
};
|
|
}.${stdenv.system} or (throw "${pname}-${version}: ${stdenv.system} is unsupported.");
|
|
|
|
linux = appimageTools.wrapType2 rec {
|
|
inherit name pname version meta;
|
|
|
|
src = fetchurl (osu-lazer-bin-src);
|
|
|
|
extraPkgs = pkgs: with pkgs; [ icu ];
|
|
|
|
extraInstallCommands =
|
|
let contents = appimageTools.extract { inherit pname version src; };
|
|
in
|
|
''
|
|
mv -v $out/bin/${pname}-${version} $out/bin/osu\!
|
|
install -m 444 -D ${contents}/osu\!.desktop -t $out/share/applications
|
|
for i in 16 32 48 64 96 128 256 512 1024; do
|
|
install -D ${contents}/osu\!.png $out/share/icons/hicolor/''${i}x$i/apps/osu\!.png
|
|
done
|
|
'';
|
|
};
|
|
|
|
darwin = stdenv.mkDerivation rec {
|
|
inherit name pname version meta;
|
|
|
|
src = fetchzip (osu-lazer-bin-src // { stripRoot = false; });
|
|
|
|
dontBuild = true;
|
|
dontFixup = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
APP_DIR="$out/Applications"
|
|
mkdir -p "$APP_DIR"
|
|
cp -r . "$APP_DIR"
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Rhythm is just a *click* away (AppImage version for score submission and multiplayer, and binary distribution for Darwin systems)";
|
|
homepage = "https://osu.ppy.sh";
|
|
license = with licenses; [
|
|
mit
|
|
cc-by-nc-40
|
|
unfreeRedistributable # osu-framework contains libbass.so in repository
|
|
];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with maintainers; [ delan stepbrobd spacefault ];
|
|
mainProgram = "osu!";
|
|
platforms = [ "aarch64-darwin" "x86_64-darwin" "x86_64-linux" ];
|
|
};
|
|
|
|
passthru.updateScript = ./update-bin.sh;
|
|
in
|
|
if stdenv.isDarwin
|
|
then darwin
|
|
else linux
|
|
|