Skip to content

Commit

Permalink
pkgs(games/wine/celeste/mods): init
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Nov 8, 2023
1 parent 7c334ec commit c255195
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ in rec {

# Games (Wine)
celeste = p ./pkgs/games/wine/celeste { inherit (lib) wrapWine; };
celesteMods = p ./pkgs/games/wine/celeste/mods.nix { };

# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
# ...
Expand Down
31 changes: 31 additions & 0 deletions pkgs/games/wine/celeste/mods.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ fetchurl }: {
skinmodhelper = fetchurl {
url = "https://files.gamebanana.com/mods/skinmodhelper_45e76.zip";
hash = "sha256-5Bv15Ip5Ww3gw0+dj+8BmGJmlELScBEBpyQcjP28qKQ=";
};

skins-cirno = fetchurl {
url = "https://files.gamebanana.com/mods/touhou-cirno_0907c.zip";
hash = "sha256-1+l0VC11A+Bds1EGFoCTbnK6ZBax6fOy0CYJSqZSSls=";
};

skins-niko = fetchurl {
url = "https://files.gamebanana.com/mods/niko_-_celeste_skinhelper_21f31.zip";
hash = "sha256-07mJo7dXzmD+LLjDHEDjIHjAH0RDTkBJ/X8F2DRZewk=";
};

skins-ralsei = fetchurl {
url = "https://files.gamebanana.com/mods/ralsei_-_deltarune.zip";
hash = "sha256-1wAzqEOovGKMNdA75WpVz2OjvoaOtAmc+bnedvw0XUA=";
};

skins-wheelchair = fetchurl {
url = "https://files.gamebanana.com/mods/wheelchair-madeline_f0e0d.zip";
hash = "sha256-+pCfqcrvuX4vk9C0PJSVDvrLq80VbDF4qg2po4+K1vk=";
};

replaceFlagWithGoldStar = fetchurl {
url = "https://files.gamebanana.com/mods/replacegoldflagwithstar.zip";
hash = "sha256-W+uNXyPFJVDtddrt9Q5CAVkuH5LCNkaD1zzRCP8NAgk=";
};
}

0 comments on commit c255195

Please sign in to comment.