nixpkgs/pkgs/games/ivan/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.4 KiB
Nix
Raw Normal View History

{ 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 19:23:39 +00:00
stdenv.mkDerivation rec {
pname = "ivan";
2022-01-03 14:10:57 +00:00
version = "059";
2018-05-27 19:23:39 +00: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 19:23:39 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2018-05-27 19:23:39 +00:00
buildInputs = [ SDL2 SDL2_mixer alsa-lib 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
env.NIX_CFLAGS_COMPILE = "-I${lib.getDev SDL2_mixer}/include/SDL2";
2018-05-27 19:23:39 +00:00
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" ];
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
'';
meta = with lib; {
2018-05-27 19:23:39 +00: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 19:23:39 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
2022-01-11 17:52:10 +00:00
maintainers = with maintainers; [];
2018-05-27 19:23:39 +00:00
};
}