flakes/overlays/oci-cli.nix

6 lines
128 B
Nix
Raw Permalink Normal View History

2025-05-20 01:16:15 +10:00
self: super: {
oci-cli = super.oci-cli.overrideAttrs(o: {
2025-05-20 01:18:42 +10:00
patches = (o.patches or []) ++ [ ./patches/oci.patch ];
2025-05-20 01:16:15 +10:00
});
}