overlays/polymc: init to bump to 1.1.0

This commit is contained in:
LavaDesu 2022-03-21 19:04:12 +07:00
parent 99339fe4c4
commit 16c091ecfc
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 14 additions and 0 deletions

View file

@ -2,6 +2,7 @@ builtins.map (path: import path) [
./discord.nix
./material-icons.nix
./picom.nix
./polymc.nix
./rofi.nix
./xinit.nix
]

13
overlays/polymc.nix Normal file
View file

@ -0,0 +1,13 @@
self: super: {
polymc = super.polymc.overrideAttrs(_: rec {
version = "1.1.0";
src = self.fetchFromGitHub {
owner = "PolyMC";
repo = "PolyMC";
rev = version;
sha256 = "sha256-p5vbpNZI/JiQJclEo/Pu/46qVul+3DAzaoow8jabHrI=";
fetchSubmodules = true;
};
});
}