2024-04-18 17:46:50 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
sfml,
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "osu++";
|
|
|
|
version = "0.1.0";
|
|
|
|
|
|
|
|
src = ../.;
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
sfml
|
|
|
|
];
|
|
|
|
|
2024-04-18 22:08:44 +02:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm755 target/osu++ -t $out/bin
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2024-04-18 17:46:50 +02:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://git.jacekpoz.pl/jacekpoz/osuplusplus";
|
|
|
|
description = "An osu client written in C++ using SMFL.";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
};
|
|
|
|
}
|