nixpkgs/pkgs/games/orthorobot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.9 KiB
Nix
Raw Normal View History

2023-06-10 07:21:02 +03:00
{ lib
, copyDesktopItems
, fetchFromGitHub
, fetchpatch
, fetchurl
, love
, makeDesktopItem
, makeWrapper
, stdenv
2023-06-10 07:24:27 +03:00
, strip-nondeterminism
2023-06-10 07:21:02 +03:00
, zip
}:
2022-12-01 19:00:00 +03:00
2021-06-23 00:44:58 +03:00
stdenv.mkDerivation rec {
2016-02-28 12:51:16 +03:00
pname = "orthorobot";
2018-07-14 01:22:48 +03:00
version = "1.1.1";
2016-02-28 12:51:16 +03:00
2021-06-23 00:44:58 +03:00
src = fetchFromGitHub {
owner = "Stabyourself";
repo = pname;
rev = "v${version}";
sha256 = "1ca6hvd890kxmamsmsfiqzw15ngsvb4lkihjb6kabgmss61a6s5p";
};
2016-02-28 12:51:16 +03:00
icon = fetchurl {
2022-12-01 19:00:00 +03:00
url = "https://stabyourself.net/images/screenshots/orthorobot-5.png";
2016-02-28 12:51:16 +03:00
sha256 = "13fa4divdqz4vpdij1lcs5kf6w2c4jm3cc9q6bz5h7lkng31jzi6";
};
2022-12-01 19:00:00 +03:00
desktopItems = [
(makeDesktopItem {
name = "orthorobot";
exec = pname;
icon = icon;
comment = "Robot game";
desktopName = "Orthorobot";
genericName = "orthorobot";
categories = [ "Game" ];
})
];
2016-02-28 12:51:16 +03:00
2023-06-10 07:21:02 +03:00
nativeBuildInputs = [
copyDesktopItems
makeWrapper
2023-06-10 07:24:27 +03:00
strip-nondeterminism
2023-06-10 07:21:02 +03:00
zip
];
2016-02-28 12:51:16 +03:00
2022-12-01 19:00:00 +03:00
patches = [
# support for love11
# https://github.com/Stabyourself/orthorobot/pull/3
2022-12-01 19:00:00 +03:00
(fetchpatch {
name = "Stabyourself-orthorobot-pull-3.patch";
url = "https://github.com/Stabyourself/orthorobot/compare/48f07423950b29a94b04aefe268f2f951f55b62e...05856ba7dbf1bb86d0f16a5f511d8ee9f2176015.patch";
2022-12-01 19:00:00 +03:00
sha256 = "sha256-WHHP6QM7R5eEkVF+J2pGNnds/OKRIRXyon85wjd3GXI=";
})
];
2016-02-28 12:51:16 +03:00
2021-06-23 13:59:57 +03:00
installPhase = ''
2022-12-01 19:00:00 +03:00
runHook preInstall
zip -9 -r orthorobot.love ./*
2023-06-10 07:24:27 +03:00
strip-nondeterminism --type zip orthorobot.love
2022-12-01 19:00:00 +03:00
install -Dm444 -t $out/share/games/lovegames/ orthorobot.love
makeWrapper ${love}/bin/love $out/bin/orthorobot \
--add-flags $out/share/games/lovegames/orthorobot.love
runHook postInstall
2016-02-28 12:51:16 +03:00
'';
meta = with lib; {
2016-02-28 12:51:16 +03:00
description = "Recharge the robot";
mainProgram = "orthorobot";
2016-02-28 12:51:16 +03:00
maintainers = with maintainers; [ leenaars ];
platforms = platforms.linux;
license = licenses.free;
2022-12-01 19:00:00 +03:00
downloadPage = "https://stabyourself.net/orthorobot/";
2016-02-28 12:51:16 +03:00
};
}