Merge pull request #153006 from trofi/updater-for-fheroes2

fheroes2: add trivial updater script
This commit is contained in:
Bobby Rong 2022-01-01 08:21:22 +08:00 committed by GitHub
commit 90ac790416
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,8 @@
{ stdenv, lib, fetchFromGitHub
, gettext, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, zlib
# updater only
, nix-update-script
}:
stdenv.mkDerivation rec {
@ -29,6 +32,12 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; {
homepage = "https://github.com/ihhub/fheroes2";
description = "Free implementation of Heroes of Might and Magic II game engine";