about summary refs log tree commit diff stats
path: root/bootstrap/default.nix
blob: 8cd7b394cba7d7ef3c95a584f256169d6f4abd55 (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];
  name = "install";
  script = ./install;
  lib = import ../lib {inherit pkgs shell-library;};
in
  lib.makeShellScriptWithLibrary {inherit dependencies name script;}