mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
12 lines
333 B
Nix
12 lines
333 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=";
|
||
|
};
|
||
|
});
|
||
|
}
|