about summary refs log tree commit diff stats
path: root/bootstrap/activate/default.nix
blob: 91df2dc8d6b30b14b62f601d4d971db2801ec7bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# vim: ts=2
{
  pkgs,
  shell-library,
  ...
}: let
  dependencies = with pkgs; [jq dash gawk curl];
  name = "activate";
  script = ./activate.sh;
  lib = import ../../lib {inherit pkgs shell-library;};
in
  lib.makeShellScriptWithLibrary {inherit dependencies name script;}