Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
114 lines
2.8 KiB
Nix
114 lines
2.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
sfml,
|
|
libX11,
|
|
glew,
|
|
python3,
|
|
glm,
|
|
meshoptimizer,
|
|
SDL2,
|
|
ninja,
|
|
}:
|
|
|
|
let
|
|
version = {
|
|
seriousproton = "2024.12.08";
|
|
emptyepsilon = "2024.12.08";
|
|
basis-universal = "1.15_final";
|
|
};
|
|
|
|
basis-universal = fetchFromGitHub {
|
|
owner = "BinomialLLC";
|
|
repo = "basis_universal";
|
|
tag = version.basis-universal;
|
|
hash = "sha256-pKvfVvdbPIdzdSOklicThS7xwt4i3/21bE6wg9f8kHY=";
|
|
};
|
|
|
|
serious-proton = stdenv.mkDerivation {
|
|
pname = "serious-proton";
|
|
version = version.seriousproton;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daid";
|
|
repo = "SeriousProton";
|
|
tag = "EE-${version.seriousproton}";
|
|
hash = "sha256-k1YCB7EJIL+kdlHEU4cJjmLZZAZyxIPU0XlSn2t4C90=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
sfml
|
|
libX11
|
|
glm
|
|
SDL2
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_BASIS" "${basis-universal}")
|
|
(lib.cmakeFeature "CMAKE_CXX_FLAGS" "-DGLM_ENABLE_EXPERIMENTAL")
|
|
];
|
|
|
|
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 {
|
|
pname = "empty-epsilon";
|
|
version = version.emptyepsilon;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daid";
|
|
repo = "EmptyEpsilon";
|
|
tag = "EE-${version.emptyepsilon}";
|
|
hash = "sha256-JsHFwbt4VGsgaZz9uxEmwzZGfkYTNsIZTKkpvCCmI48=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
serious-proton
|
|
sfml
|
|
glew
|
|
libX11
|
|
python3
|
|
glm
|
|
SDL2
|
|
ninja
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeFeature "SERIOUS_PROTON_DIR" "${serious-proton.src}")
|
|
(lib.cmakeFeature "CPACK_PACKAGE_VERSION" "${version.emptyepsilon}")
|
|
(lib.cmakeFeature "CPACK_PACKAGE_VERSION_MAJOR" "${lib.versions.major version.emptyepsilon}")
|
|
(lib.cmakeFeature "CPACK_PACKAGE_VERSION_MINOR" "${lib.versions.minor version.emptyepsilon}")
|
|
(lib.cmakeFeature "CPACK_PACKAGE_VERSION_PATCH" "${lib.versions.patch version.emptyepsilon}")
|
|
(lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_BASIS" "${basis-universal}")
|
|
(lib.cmakeFeature "FETCHCONTENT_SOURCE_DIR_MESHOPTIMIZER" "${meshoptimizer.src}")
|
|
(lib.cmakeFeature "CMAKE_AR" "${stdenv.cc.cc}/bin/gcc-ar")
|
|
(lib.cmakeFeature "CMAKE_RANLIB" "${stdenv.cc.cc}/bin/gcc-ranlib")
|
|
(lib.cmakeFeature "CMAKE_CXX_FLAGS" "-DGLM_ENABLE_EXPERIMENTAL")
|
|
"-G Ninja"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Open source bridge simulator based on Artemis";
|
|
mainProgram = "EmptyEpsilon";
|
|
homepage = "https://daid.github.io/EmptyEpsilon/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [
|
|
fpletz
|
|
ma27
|
|
];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|