nixpkgs/pkgs/games/empty-epsilon/default.nix

67 lines
1.6 KiB
Nix
Raw Normal View History

2018-08-03 14:56:46 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, sfml, libX11, glew, python3 }:
2018-04-26 23:22:35 +00:00
let
2019-01-25 23:27:40 +00:00
major = "2019";
2020-01-02 12:30:35 +00:00
minor = "11";
patch = "01";
version = "${major}.${minor}.${patch}";
2018-04-26 23:22:35 +00:00
2019-08-13 21:52:01 +00:00
serious-proton = stdenv.mkDerivation {
pname = "serious-proton";
2018-04-26 23:22:35 +00:00
inherit version;
src = fetchFromGitHub {
owner = "daid";
repo = "SeriousProton";
rev = "EE-${version}";
2020-01-02 12:30:35 +00:00
sha256 = "1sc1z9n99jspa8jnk0pwdzynnadvcmb3pxl5cndw3z90xjwpzivw";
2018-04-26 23:22:35 +00:00
};
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
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "empty-epsilon";
2018-04-26 23:22:35 +00:00
inherit version;
src = fetchFromGitHub {
owner = "daid";
repo = "EmptyEpsilon";
rev = "EE-${version}";
2020-01-02 12:30:35 +00:00
sha256 = "09jizc6h7jbsp8bzv05pvb5z24zadjzjx1slj5317axsb170v81p";
2018-04-26 23:22:35 +00:00
};
nativeBuildInputs = [ cmake ];
2018-08-03 14:56:46 +00:00
buildInputs = [ serious-proton sfml glew libX11 python3 ];
2018-04-26 23:22:35 +00:00
cmakeFlags = [
"-DSERIOUS_PROTON_DIR=${serious-proton.src}"
"-DCPACK_PACKAGE_VERSION=${version}"
"-DCPACK_PACKAGE_VERSION_MAJOR=${major}"
"-DCPACK_PACKAGE_VERSION_MINOR=${minor}"
"-DCPACK_PACKAGE_VERSION_PATCH=${patch}"
2018-04-26 23:22:35 +00:00
];
meta = with lib; {
description = "Open source bridge simulator based on Artemis";
homepage = https://daid.github.io/EmptyEpsilon/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fpletz lheckemann ];
2018-04-26 23:22:35 +00:00
platforms = platforms.linux;
};
}