6 lines
128 B
Nix
6 lines
128 B
Nix
|
|
self: super: {
|
||
|
|
oci-cli = super.oci-cli.overrideAttrs(o: {
|
||
|
|
patches = (o.patches or []) ++ [ ./patches/oci.patch ];
|
||
|
|
});
|
||
|
|
}
|