7 lines
162 B
Nix
7 lines
162 B
Nix
final: prev: {
|
|
zipline = prev.zipline.overrideAttrs (finalAttrs: prevAttrs: {
|
|
patches = prevAttrs.patches ++ [
|
|
./no-check-bucket.patch
|
|
];
|
|
});
|
|
}
|