EmptyEpsilon: init at 2018.02.15

This commit is contained in:
Franz Pletz 2018-04-27 01:22:35 +02:00
parent 70bcb50798
commit b5655751a1
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,58 @@
{ lib, stdenv, fetchFromGitHub, cmake, sfml, libX11, glew, python }:
let
version = "2018.02.15";
serious-proton = stdenv.mkDerivation rec {
name = "serious-proton-${version}";
inherit version;
src = fetchFromGitHub {
owner = "daid";
repo = "SeriousProton";
rev = "EE-${version}";
sha256 = "0b4n4pn7x3y63i9y15f8983zlpdvmx7151iph1lcc49j3hmpd0gy";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ sfml libX11 ];
meta = with lib; {
description = "C++ game engine coded on top of SFML used for EmptyEpsilon";
homepage = https://github.com/daid/SeriousProton;
license = licenses.mit;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
};
in
stdenv.mkDerivation rec {
name = "empty-epsilon-${version}";
inherit version;
src = fetchFromGitHub {
owner = "daid";
repo = "EmptyEpsilon";
rev = "EE-${version}";
sha256 = "1by0wrw00frrlcs1kd003zkmfkwa1pnbnva2qn8km3xnl9chf11d";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ serious-proton sfml glew libX11 python ];
cmakeFlags = [
"-DSERIOUS_PROTON_DIR=${serious-proton.src}"
];
meta = with lib; {
description = "Open source bridge simulator based on Artemis";
homepage = https://daid.github.io/EmptyEpsilon/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}

View File

@ -19017,6 +19017,8 @@ with pkgs;
egoboo = callPackage ../games/egoboo { };
EmptyEpsilon = callPackage ../games/empty-epsilon { };
endless-sky = callPackage ../games/endless-sky { };
enyo-doom = libsForQt5.callPackage ../games/enyo-doom { };