about summary refs log blame commit diff stats
path: root/bootstrap/install/default.nix
blob: ae9bfad5459d6bb1a3a0f4353fa494ff87e8609c (plain) (tree)
1
2
3
4
5
6
7
8
9
           


                
      
                                                
                   
                        
                                                       
  
                                                                    
# vim: ts=2
{
  pkgs,
  shell-library,
  ...
}: let
  dependencies = with pkgs; [jq dash curl gawk];
  name = "install";
  script = ./install.sh;
  lib = import ../../lib {inherit pkgs shell-library;};
in
  lib.makeShellScriptWithLibrary {inherit dependencies name script;}