summary refs log tree commit diff
path: root/pkgs/development/mobile/titaniumenv/cli/default.nix
blob: fa98bb3b76adccd4cdd3e1363692d3e7ef7acac2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{system ? builtins.currentSystem, pkgs ? import <nixpkgs> {
    inherit system;
  }, overrides ? {}}:

let
  nodeEnv = import ./node-env.nix {
    inherit (pkgs) stdenv fetchurl nodejs python utillinux runCommand;
  };
  registry = (import ./registry.nix {
    inherit (nodeEnv) buildNodePackage;
    inherit (pkgs) fetchurl fetchgit;
    self = registry;
  }) // overrides;
in
registry