Loading
gnucap: fix overriding with overrideAttrs
Any attribute concatenation onto the result of mkDerivation will break
overrideability.
Before this PR, the following would fail to evaluate:
```
(gnucap.overrideAttrs { pname = "my-gnucap"; }).withPlugins (p: [
p.verilog ])'
```
The error is:
```
error: attribute 'withPlugins' missing
```
With this PR, it works as expected.