commit
6d9c0e3b2d
@ -1109,10 +1109,6 @@
|
|||||||
githubId = 977929;
|
githubId = 977929;
|
||||||
name = "Cody Allen";
|
name = "Cody Allen";
|
||||||
};
|
};
|
||||||
cf6b88f = {
|
|
||||||
email = "elmo.todurov@eesti.ee";
|
|
||||||
name = "Elmo Todurov";
|
|
||||||
};
|
|
||||||
cfouche = {
|
cfouche = {
|
||||||
email = "chaddai.fouche@gmail.com";
|
email = "chaddai.fouche@gmail.com";
|
||||||
github = "Chaddai";
|
github = "Chaddai";
|
||||||
@ -1219,6 +1215,12 @@
|
|||||||
githubId = 3956062;
|
githubId = 3956062;
|
||||||
name = "Simon Lackerbauer";
|
name = "Simon Lackerbauer";
|
||||||
};
|
};
|
||||||
|
cizra = {
|
||||||
|
email = "todurov+nix@gmail.com";
|
||||||
|
github = "cizra";
|
||||||
|
githubId = 2131991;
|
||||||
|
name = "Elmo Todurov";
|
||||||
|
};
|
||||||
ck3d = {
|
ck3d = {
|
||||||
email = "ck3d@gmx.de";
|
email = "ck3d@gmx.de";
|
||||||
github = "ck3d";
|
github = "ck3d";
|
||||||
|
@ -96,7 +96,7 @@ EOF
|
|||||||
description = "The Dark Mod - stealth FPS inspired by the Thief series";
|
description = "The Dark Mod - stealth FPS inspired by the Thief series";
|
||||||
homepage = "http://www.thedarkmod.com";
|
homepage = "http://www.thedarkmod.com";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ cf6b88f ];
|
maintainers = with maintainers; [ cizra ];
|
||||||
platforms = with platforms; [ "x86_64-linux" ]; # tdm also supports x86, but I don't have a x86 install at hand to test.
|
platforms = with platforms; [ "x86_64-linux" ]; # tdm also supports x86, but I don't have a x86 install at hand to test.
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
50
pkgs/games/tome2/default.nix
Normal file
50
pkgs/games/tome2/default.nix
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, makeDesktopItem, ncurses, libX11, boost, cmake }:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "tome2";
|
||||||
|
description = "A dungeon crawler similar to Angband, based on the works of Tolkien";
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
desktopName = pname;
|
||||||
|
name = pname;
|
||||||
|
exec = "${pname}-x11";
|
||||||
|
icon = pname;
|
||||||
|
terminal = "False";
|
||||||
|
comment = description;
|
||||||
|
type = "Application";
|
||||||
|
categories = "Game;RolePlaying;";
|
||||||
|
genericName = pname;
|
||||||
|
};
|
||||||
|
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
inherit pname;
|
||||||
|
version = "2.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tome2";
|
||||||
|
repo = "tome2";
|
||||||
|
rev = "4e6a906c80ff07b75a6acf4ff585b47303805e46";
|
||||||
|
sha256 = "06bddj55y673d7bnzblk8n01z32l6k2rad3bpzr8dmw464hx4wwf";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ncurses libX11 boost ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DSYSTEM_INSTALL=ON"
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
cp ${desktopItem}/share/applications/*.desktop $out/share/applications
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
inherit description;
|
||||||
|
license = licenses.unfree;
|
||||||
|
maintainers = with maintainers; [ cizra ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
homepage = "https://github.com/tome2/tome2";
|
||||||
|
};
|
||||||
|
}
|
@ -22403,6 +22403,8 @@ in
|
|||||||
|
|
||||||
tinyfugue = callPackage ../games/tinyfugue { };
|
tinyfugue = callPackage ../games/tinyfugue { };
|
||||||
|
|
||||||
|
tome2 = callPackage ../games/tome2 { };
|
||||||
|
|
||||||
tome4 = callPackage ../games/tome4 { };
|
tome4 = callPackage ../games/tome4 { };
|
||||||
|
|
||||||
toppler = callPackage ../games/toppler { };
|
toppler = callPackage ../games/toppler { };
|
||||||
|
Loading…
Reference in New Issue
Block a user