15 stdenv.mkDerivation (finalAttrs: {
16 pname = "chocolate-doom";
19 src = fetchFromGitHub {
20 owner = "chocolate-doom";
21 repo = "chocolate-doom";
22 tag = "chocolate-doom-${finalAttrs.version}";
23 hash = "sha256-yDPfqCuzRbDhOQisIDAGo2bmmMjT+0lds5xc9C2pqoU=";
27 patchShebangs --build man/{simplecpp,docgen}
50 enableParallelBuilding = true;
55 homepage = "https://www.chocolate-doom.org";
56 changelog = "https://github.com/chocolate-doom/chocolate-doom/releases/tag/chocolate-doom-${finalAttrs.version}";
57 description = "Doom source port that accurately reproduces the experience of Doom as it was played in the 1990s";
58 mainProgram = "chocolate-doom";
59 license = lib.licenses.gpl2Plus;
60 platforms = lib.platforms.unix;
61 maintainers = with lib.maintainers; [ Gliczy ];