1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/games/ivan/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2018-07-03 08:41:18 -04:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, SDL2_mixer, alsaLib, libpng, pcre }:
2018-05-27 15:23:39 -04:00
stdenv.mkDerivation rec {
name = "ivan-${version}";
2019-02-19 15:36:49 -05:00
version = "056";
2018-05-27 15:23:39 -04:00
src = fetchFromGitHub {
owner = "Attnam";
repo = "ivan";
rev = "v${version}";
2019-02-19 15:36:49 -05:00
sha256 = "07mj3b2p3n3bq7rwi31y0vywnr4namqbcnz4c53kl38ajw9viyf0";
2018-05-27 15:23:39 -04:00
};
2018-07-03 08:41:18 -04:00
nativeBuildInputs = [ cmake pkgconfig ];
2018-05-27 15:23:39 -04:00
2018-07-03 08:41:18 -04:00
buildInputs = [ SDL2 SDL2_mixer alsaLib libpng pcre ];
2018-05-27 15:23:39 -04:00
hardeningDisable = ["all"];
2018-07-03 08:41:18 -04:00
2018-05-27 15:23:39 -04:00
# Enable wizard mode
2018-12-21 15:02:12 -05:00
cmakeFlags = ["-DCMAKE_CXX_FLAGS=-DWIZARD"];
2018-05-27 15:23:39 -04:00
# Help CMake find SDL_mixer.h
NIX_CFLAGS_COMPILE = "-I${SDL2_mixer}/include/SDL2";
meta = with stdenv.lib; {
description = "Graphical roguelike game";
longDescription = ''
Iter Vehemens ad Necem (IVAN) is a graphical roguelike game, which currently
runs in Windows, DOS, Linux, and OS X. It features advanced bodypart and
material handling, multi-colored lighting and, above all, deep gameplay.
This is a fan continuation of IVAN by members of Attnam.com
'';
homepage = https://attnam.com/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
2018-08-13 14:24:39 -04:00
maintainers = with maintainers; [freepotion];
2018-05-27 15:23:39 -04:00
};
}