2021-06-10 03:57:09 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_mixer, alsa-lib, libpng
|
2020-03-19 01:01:10 +00:00
|
|
|
, pcre, makeDesktopItem }:
|
2018-05-27 20:23:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ivan";
|
2022-01-03 14:10:57 +00:00
|
|
|
version = "059";
|
2018-05-27 20:23:39 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Attnam";
|
|
|
|
repo = "ivan";
|
|
|
|
rev = "v${version}";
|
2022-01-03 14:10:57 +00:00
|
|
|
sha256 = "sha256-5Ijy28LLx1TGnZE6ZNQXPYfvW2KprF+91fKx2MzLEms=";
|
2018-05-27 20:23:39 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 05:49:22 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2018-05-27 20:23:39 +01:00
|
|
|
|
2021-06-10 03:57:09 +01:00
|
|
|
buildInputs = [ SDL2 SDL2_mixer alsa-lib libpng pcre ];
|
2018-05-27 20:23:39 +01:00
|
|
|
|
|
|
|
hardeningDisable = ["all"];
|
2018-07-03 13:41:18 +01:00
|
|
|
|
2018-05-27 20:23:39 +01:00
|
|
|
# Enable wizard mode
|
2018-12-21 20:02:12 +00:00
|
|
|
cmakeFlags = ["-DCMAKE_CXX_FLAGS=-DWIZARD"];
|
2018-05-27 20:23:39 +01: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;
|
2022-02-22 14:56:15 +00:00
|
|
|
categories = [ "Game" "AdventureGame" "RolePlaying" ];
|
2020-01-01 18:24:13 +00:00
|
|
|
comment = meta.description;
|
|
|
|
};
|
|
|
|
|
2020-03-19 01:01:10 +00:00
|
|
|
# Create appropriate directories. Copy icons and desktop item to these directories.
|
2020-01-01 18:24:13 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/applications
|
2020-03-19 01:01:10 +00:00
|
|
|
mkdir -p $out/share/icons/hicolor/16x16/apps
|
2020-01-01 18:24:13 +00:00
|
|
|
mkdir -p $out/share/icons/hicolor/32x32/apps
|
2020-03-19 01:01:10 +00:00
|
|
|
mkdir -p $out/share/icons/hicolor/128x128/apps
|
|
|
|
mkdir -p $out/share/icons/hicolor/256x256/apps
|
|
|
|
mkdir -p $out/share/icons/hicolor/512x512/apps
|
|
|
|
cp $src/Graphics/icons/shadowless.iconset/icon_16x16.png $out/share/icons/hicolor/16x16/apps/ivan.png
|
|
|
|
cp $src/Graphics/icons/shadowless.iconset/icon_32x32.png $out/share/icons/hicolor/32x32/apps/ivan.png
|
|
|
|
cp $src/Graphics/icons/shadowless.iconset/icon_128x128.png $out/share/icons/hicolor/128x128/apps/ivan.png
|
|
|
|
cp $src/Graphics/icons/shadowless.iconset/icon_256x256.png $out/share/icons/hicolor/256x256/apps/ivan.png
|
|
|
|
cp $src/Graphics/icons/shadowless.iconset/icon_512x512.png $out/share/icons/hicolor/512x512/apps/ivan.png
|
2020-01-01 18:24:13 +00:00
|
|
|
cp ${ivanDesktop}/share/applications/* $out/share/applications
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-05-27 20:23:39 +01:00
|
|
|
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
|
|
|
|
'';
|
2020-03-18 07:25:08 +00:00
|
|
|
homepage = "https://attnam.com/";
|
2018-05-27 20:23:39 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2022-01-11 17:52:10 +00:00
|
|
|
maintainers = with maintainers; [];
|
2018-05-27 20:23:39 +01:00
|
|
|
};
|
|
|
|
}
|