tvl-depot/nix/emptyDerivation/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
414 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let
emptyDerivation = import ./emptyDerivation.nix {
inherit pkgs;
inherit (pkgs) stdenv;
inherit (depot.nix) getBins;
};
tests = import ./tests.nix {
inherit emptyDerivation;
inherit pkgs;
inherit (depot.nix) writeExecline getBins;
inherit (depot.nix.runTestsuite) runTestsuite it assertEq;
};
in
{
__functor = _: emptyDerivation;
inherit tests;
}