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

20 lines
550 B
Nix
Raw Permalink Normal View History

2024-02-27 12:19:31 +01:00
{ lib, pkgs }:
lib.makeScope pkgs.newScope (
final:
let
inherit (final) callPackage;
in
{
makeGaugePlugin = callPackage ./make-gauge-plugin.nix { };
testGaugePlugins = callPackage ./test-gauge-plugins.nix { };
2024-03-11 13:32:55 +01:00
dotnet = callPackage ./dotnet { };
html-report = callPackage ./html-report { };
2024-02-27 12:19:31 +01:00
java = callPackage ./java { };
2024-03-12 12:47:47 +01:00
js = callPackage ./js { };
2024-03-12 10:36:34 +01:00
ruby = callPackage ./ruby { };
2024-03-12 13:37:57 +01:00
go = callPackage ./go { };
2024-03-15 13:04:25 +01:00
screenshot = callPackage ./screenshot { };
2024-03-15 14:00:26 +01:00
xml-report = callPackage ./xml-report { };
2024-02-27 12:19:31 +01:00
}
)