mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
21 lines
399 B
Nix
21 lines
399 B
Nix
|
{...}: final: prev: let
|
||
|
inherit
|
||
|
(final.lib)
|
||
|
fix
|
||
|
;
|
||
|
in {
|
||
|
docker_24 = prev.docker.override (fix (self: {
|
||
|
version = "24.0.9";
|
||
|
cliRev = "v${self.version}";
|
||
|
cliHash = "";
|
||
|
mobyRev = "v${self.version}";
|
||
|
mobyHash = "";
|
||
|
runcRev = "v1.1.12";
|
||
|
runcHash = "";
|
||
|
containerdRev = "v1.7.13";
|
||
|
containerdHash = "";
|
||
|
tiniRev = "v0.19.0";
|
||
|
tiniHash = "";
|
||
|
}));
|
||
|
}
|