osu-lazer-bin: init at 2022.1228.0
This commit is contained in:
parent
a76df461f1
commit
fcfdd268ca
2 changed files with 37 additions and 0 deletions
35
pkgs/games/osu-lazer-bin/default.nix
Normal file
35
pkgs/games/osu-lazer-bin/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{ appimageTools, lib, fetchurl }:
|
||||||
|
|
||||||
|
appimageTools.wrapType2 rec {
|
||||||
|
pname = "osu-lazer-bin";
|
||||||
|
version = "2022.1228.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage";
|
||||||
|
sha256 = "sha256-KDJ6HrnGyM6Brtf66C0r+hbSt/stppe+srChtNSoQ9g=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Rhythm is just a *click* away (AppImage version for score submission and multiplayer)";
|
||||||
|
homepage = "https://osu.ppy.sh";
|
||||||
|
license = with licenses; [
|
||||||
|
mit
|
||||||
|
cc-by-nc-40
|
||||||
|
unfreeRedistributable # osu-framework contains libbass.so in repository
|
||||||
|
];
|
||||||
|
maintainers = [ maintainers.delan ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -34144,6 +34144,8 @@ with pkgs;
|
||||||
|
|
||||||
osu-lazer = callPackage ../games/osu-lazer { };
|
osu-lazer = callPackage ../games/osu-lazer { };
|
||||||
|
|
||||||
|
osu-lazer-bin = callPackage ../games/osu-lazer-bin { };
|
||||||
|
|
||||||
pro-office-calculator = libsForQt5.callPackage ../games/pro-office-calculator { };
|
pro-office-calculator = libsForQt5.callPackage ../games/pro-office-calculator { };
|
||||||
|
|
||||||
qgo = libsForQt5.callPackage ../games/qgo { };
|
qgo = libsForQt5.callPackage ../games/qgo { };
|
||||||
|
|
Loading…
Reference in a new issue