52acca72bf
Since the rust writer doesn't seem to get fixed on darwin, we'll just wrap the haskell writer test in our own derivation (which is possible since tests.writers exposes a bunch of internals via passthru) and expose it via tests.haskell which are already in mergeable. Finally a way to test the (hopefully) working haskell writer on darwin again!
9 lines
246 B
Nix
9 lines
246 B
Nix
{ lib, callPackage }:
|
|
|
|
lib.recurseIntoAttrs {
|
|
shellFor = callPackage ./shellFor { };
|
|
documentationTarball = callPackage ./documentationTarball { };
|
|
setBuildTarget = callPackage ./setBuildTarget { };
|
|
writers = callPackage ./writers { };
|
|
}
|