Unterhaltung
Nachrichten
-
Oh, ok! I thought overrideDerivation overrode the mkDerivation call, but it actually overrides the underlying derivation. Overriding the mkDerivation call is what overrideAttrs does. Basically I always want overrideAttrs and I've always …
-
Also don't miss lib.addMetaAttrs: > lib.addMetaAttrs { platforms = drv.meta.platforms ++ [ "x86_64-darwin" ] } drv is a bit neater than having to go all: > drv.overrideAttrs (oldAttrs: { meta = oldAttrs.meta // { platforms = oldAttrs.…
-