nixpkgs/pkgs/games/ivan/default.nix

63 lines
1.8 KiB
Nix
Raw Normal View History

2020-01-01 18:24:13 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, SDL2_mixer, alsaLib, libpng
, pcre, graphicsmagick, makeDesktopItem }:
2018-05-27 19:23:39 +00:00
stdenv.mkDerivation rec {
pname = "ivan";
2019-09-28 15:13:27 +00:00
version = "057";
2018-05-27 19:23:39 +00:00
src = fetchFromGitHub {
owner = "Attnam";
repo = "ivan";
rev = "v${version}";
2019-09-28 15:13:27 +00:00
sha256 = "0mavmwikfsyr5sp65sl8dqknl1yz7c7ds53y1qkma24vsikz3k64";
2018-05-27 19:23:39 +00:00
};
2020-01-01 18:24:13 +00:00
nativeBuildInputs = [ cmake pkgconfig graphicsmagick ];
2018-05-27 19:23:39 +00:00
2018-07-03 12:41:18 +00:00
buildInputs = [ SDL2 SDL2_mixer alsaLib libpng pcre ];
2018-05-27 19:23:39 +00:00
hardeningDisable = ["all"];
2018-07-03 12:41:18 +00:00
2018-05-27 19:23:39 +00:00
# Enable wizard mode
2018-12-21 20:02:12 +00:00
cmakeFlags = ["-DCMAKE_CXX_FLAGS=-DWIZARD"];
2018-05-27 19:23:39 +00:00
# Help CMake find SDL_mixer.h
NIX_CFLAGS_COMPILE = "-I${SDL2_mixer}/include/SDL2";
2020-01-01 18:24:13 +00:00
# Create "ivan.desktop" file
ivanDesktop = makeDesktopItem {
name = pname;
exec = pname;
icon = "ivan.png";
desktopName = "IVAN";
genericName = pname;
categories = "Game;AdventureGame;RolePlaying;";
comment = meta.description;
};
# Create appropriate directories. Convert "Icon.bmp" to "ivan.png", then copy
# it and "ivan.desktop" to these directories.
postInstall = ''
mkdir -p $out/share/applications
mkdir -p $out/share/icons/hicolor/32x32/apps
gm convert $src/Graphics/Icon.bmp $out/share/icons/hicolor/32x32/apps/ivan.png
cp ${ivanDesktop}/share/applications/* $out/share/applications
'';
2018-05-27 19:23:39 +00:00
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 18:24:39 +00:00
maintainers = with maintainers; [freepotion];
2018-05-27 19:23:39 +00:00
};
}