nixpkgs/pkgs/games/ivan/default.nix

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";
2020-03-18 07:25:08 +00:00
version = "058";
2018-05-27 19:23:39 +00:00
src = fetchFromGitHub {
owner = "Attnam";
repo = "ivan";
rev = "v${version}";
2020-03-18 07:25:08 +00:00
sha256 = "04jzs8wad2b3g9hvnijr4r89iiw6b1i44zdzkg0dy447lrw6l6xc";
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
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;
};
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;
2018-08-13 18:24:39 +00:00
maintainers = with maintainers; [freepotion];
2018-05-27 19:23:39 +00:00
};
}