12 lines
384 B
Nix
12 lines
384 B
Nix
|
{ nixpkgs, system, cnsBaseDomain, dataCenters, mantaDomain, tritonApiDomain, ... }:
|
||
|
let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
};
|
||
|
in
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "triton-docker-env.sh";
|
||
|
runtimeInputs = with pkgs.nodePackages; [ triton json ];
|
||
|
text = import ./triton-docker-env-shell.nix { inherit pkgs cnsBaseDomain dataCenters mantaDomain tritonApiDomain; };
|
||
|
}
|