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