lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #125654 from karolchmist/init-fheroes2-0.9.4

fheroes2: init at 0.9.4

authored by

Sandro and committed by
GitHub
929c876f 157aee00

+47
+45
pkgs/games/fheroes2/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub 2 + , gettext, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, zlib 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "fheroes2"; 7 + version = "0.9.4"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "ihhub"; 11 + repo = "fheroes2"; 12 + rev = version; 13 + sha256 = "sha256-z+88tVsf4uyMFzNfZDKXo0cYqBCYn1ehX+A+e+aIfSg="; 14 + }; 15 + 16 + buildInputs = [ gettext libpng SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib ]; 17 + 18 + makeFlags = [ 19 + "FHEROES2_STRICT_COMPILATION=1" 20 + "RELEASE=1" 21 + ]; 22 + 23 + enableParallelBuilding = true; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + 28 + install -Dm755 $PWD/src/dist/fheroes2 $out/bin/fheroes2 29 + 30 + runHook postInstall 31 + ''; 32 + 33 + meta = with lib; { 34 + homepage = "https://github.com/ihhub/fheroes2"; 35 + description = "Free implementation of Heroes of Might and Magic II game engine"; 36 + longDescription = '' 37 + In order to play this game, an original game data is required. 38 + Please refer to README of the project for instructions. 39 + On linux, the data can be placed in ~/.local/share/fheroes2 folder. 40 + ''; 41 + license = licenses.gpl2Plus; 42 + maintainers = [ maintainers.karolchmist ]; 43 + platforms = platforms.linux; 44 + }; 45 + }
+2
pkgs/top-level/all-packages.nix
··· 28345 28345 28346 28346 fava = callPackage ../applications/office/fava {}; 28347 28347 28348 + fheroes2 = callPackage ../games/fheroes2 {}; 28349 + 28348 28350 fish-fillets-ng = callPackage ../games/fish-fillets-ng {}; 28349 28351 28350 28352 flightgear = libsForQt5.callPackage ../games/flightgear { };