nixos-configs/common/overlays/plymouth/default.nix
matt1432 4a85e1c402
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: update plymouth, remove some useless code
2023-12-30 00:06:27 -05:00

16 lines
466 B
Nix

final: prev: {
plymouth = prev.plymouth.overrideAttrs (o: {
version = "unstable-2023-12-08";
src = prev.fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "plymouth";
repo = "plymouth";
# https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/236
# Last commit that works
rev = "58cc9f84e456ab0510b13d7bdbc13697467ca7be";
hash = "sha256-hgQ8nCphR4hc+WTNtS8GgBrC54uYnvTCp7kjgB/u5lE=";
};
});
}