Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
2025-04-08 02:57:25 -04:00

79 lines
1.9 KiB
Nix

{
lib,
copyDesktopItems,
fetchFromGitHub,
fetchpatch,
fetchurl,
love,
makeDesktopItem,
makeWrapper,
stdenv,
strip-nondeterminism,
zip,
}:
stdenv.mkDerivation rec {
pname = "orthorobot";
version = "1.1.1";
src = fetchFromGitHub {
owner = "Stabyourself";
repo = pname;
rev = "v${version}";
sha256 = "1ca6hvd890kxmamsmsfiqzw15ngsvb4lkihjb6kabgmss61a6s5p";
};
icon = fetchurl {
url = "https://stabyourself.net/images/screenshots/orthorobot-5.png";
sha256 = "13fa4divdqz4vpdij1lcs5kf6w2c4jm3cc9q6bz5h7lkng31jzi6";
};
desktopItems = [
(makeDesktopItem {
name = "orthorobot";
exec = pname;
icon = icon;
comment = "Robot game";
desktopName = "Orthorobot";
genericName = "orthorobot";
categories = [ "Game" ];
})
];
nativeBuildInputs = [
copyDesktopItems
makeWrapper
strip-nondeterminism
zip
];
patches = [
# support for love11
# https://github.com/Stabyourself/orthorobot/pull/3
(fetchpatch {
name = "Stabyourself-orthorobot-pull-3.patch";
url = "https://github.com/Stabyourself/orthorobot/compare/48f07423950b29a94b04aefe268f2f951f55b62e...05856ba7dbf1bb86d0f16a5f511d8ee9f2176015.patch";
sha256 = "sha256-WHHP6QM7R5eEkVF+J2pGNnds/OKRIRXyon85wjd3GXI=";
})
];
installPhase = ''
runHook preInstall
zip -9 -r orthorobot.love ./*
strip-nondeterminism --type zip orthorobot.love
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
'';
meta = with lib; {
description = "Recharge the robot";
mainProgram = "orthorobot";
maintainers = with maintainers; [ leenaars ];
platforms = platforms.linux;
license = licenses.free;
downloadPage = "https://stabyourself.net/orthorobot/";
};
}