2023-08-19 14:34:46 +00:00
|
|
|
{ callPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, zlib
|
|
|
|
}:
|
|
|
|
|
|
|
|
callPackage ./build.nix rec {
|
|
|
|
pname = "fallout2-ce";
|
2024-04-21 12:54:05 +00:00
|
|
|
version = "1.3.0";
|
2023-08-19 14:34:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alexbatalov";
|
|
|
|
repo = "fallout2-ce";
|
|
|
|
rev = "v${version}";
|
2024-04-21 12:54:05 +00:00
|
|
|
hash = "sha256-r1pnmyuo3uw2R0x9vGScSHIVNA6t+txxABzgHkUEY5U=";
|
2023-08-19 14:34:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extraBuildInputs = [ zlib ];
|
|
|
|
|
|
|
|
extraMeta = {
|
|
|
|
description = "A fully working re-implementation of Fallout 2, with the same original gameplay, engine bugfixes, and some quality of life improvements";
|
|
|
|
homepage = "https://github.com/alexbatalov/fallout2-ce";
|
|
|
|
};
|
|
|
|
}
|