dotfiles/overlays/bumps/mesa.nix
magic_rb 85354c4eb5
Implement and utilize bumps
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-05-14 22:36:58 +02:00

14 lines
443 B
Nix

{...}: final: prev: {
mesa_git = prev.mesa_git.overrideAttrs (old: {
src = final.fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "gfxstrand";
repo = "mesa";
rev = "24f006fb6dc64d763b695c3e5bd727898c54555a";
hash = "sha256-YRswdp1M6mCetKRvtARusW0xOywAmu7Wo9wmToGLCeg=";
};
nativeBuildInputs = final.lib.traceSeq (map (y: y.outPath) old.nativeBuildInputs) old.nativeBuildInputs;
});
}