tvl-depot/users/grfn/system/home/modules/games.nix
sterni 6a897551cc chore(3p): bump NixOS channels to 2022-01-27
Use a nixos-unstable revision the channel has not yet advanced to (but
the tested jobset has succeeded already), so we'll benefit from the
polkit security update.

* //users/grfn/home/games: replace multimc with polymc.
  Seems like this is the conclusion in in the trademark saga.

* //third_party/terrform-provider-glesys: use new mkProvider interface
  See https://github.com/nixos/nixpkgs/commit/e7dbfd7ece0e

Change-Id: Ieb76a3d73c42ce1fa34050ac797fa4e3a905e8ef
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5075
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
2022-01-28 10:43:01 +00:00

59 lines
1.5 KiB
Nix

{ config, lib, pkgs, ... }:
with pkgs;
with lib;
let
df-orig = dwarf-fortress-packages.dwarf-fortress-original;
df-full = (dwarf-fortress-packages.dwarf-fortress-full.override {
theme = null;
enableIntro = false;
enableFPS = true;
});
init = runCommand "init.txt" {} ''
substitute "${df-orig}/data/init/init.txt" $out \
--replace "[INTRO:YES]" "[INTRO:NO]" \
--replace "[VOLUME:255]" "[VOLUME:0]" \
--replace "[FPS:NO]" "[FPS:YES]"
'';
d_init = runCommand "d_init.txt" {} ''
substitute "${df-orig}/data/init/d_init.txt" $out \
--replace "[AUTOSAVE:NONE]" "[AUTOSAVE:SEASONAL]" \
--replace "[AUTOSAVE_PAUSE:NO]" "[AUTOSAVE_PAUSE:YES]" \
--replace "[INITIAL_SAVE:NO]" "[INITIAL_SAVE:YES]" \
--replace "[EMBARK_WARNING_ALWAYS:NO]" "[EMBARK_WARNING_ALWAYS:YES]" \
--replace "[VARIED_GROUND_TILES:YES]" "[VARIED_GROUND_TILES:NO]" \
--replace "[SHOW_FLOW_AMOUNTS:NO]" "[SHOW_FLOW_AMOUNTS:YES]"
'';
df = runCommand "dwarf-fortress" {} ''
mkdir -p $out/bin
sed \
-e '4icp -f ${init} "$DF_DIR/data/init/init.txt"' \
-e '4icp -f ${d_init} "$DF_DIR/data/init/d_init.txt"' \
< "${df-full}/bin/dwarf-fortress" >"$out/bin/dwarf-fortress"
shopt -s extglob
ln -s ${df-full}/bin/!(dwarf-fortress) $out/bin
chmod +x $out/bin/dwarf-fortress
'';
in mkMerge [
{
home.packages = [
crawl
xonotic
];
}
(mkIf stdenv.isLinux {
home.packages = [
df
polymc
];
})
]