nixpkgs/pkgs/games/fallout-ce/fallout2-ce.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
569 B
Nix
Raw Normal View History

2023-08-19 16:34:46 +02:00
{ callPackage
, fetchFromGitHub
, zlib
}:
callPackage ./build.nix rec {
pname = "fallout2-ce";
version = "1.2.0";
src = fetchFromGitHub {
owner = "alexbatalov";
repo = "fallout2-ce";
rev = "v${version}";
hash = "sha256-+N4jhmxBX6z48kaU0jm90OKhguHlggT3OF9uuyY0EV0=";
};
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";
};
}