9 lines
202 B
Nix
9 lines
202 B
Nix
{self, super, package }:
|
|
|
|
package.override {
|
|
nix-index-unwrapped = self.nix-index-unwrapped.overrideAttrs (oldAttrs: {
|
|
patches = oldAttrs.patches or [] ++ [
|
|
./cnfOutput.patch
|
|
];
|
|
});
|
|
}
|