blob: 71548e9044407abc0904fe0af51923dba7f9534b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# vim: ts=2
{
pkgs,
shell-library,
...
}: let
dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git;};
name = "install";
script = ./install.sh;
lib = import ../../lib {inherit pkgs shell-library;};
in
lib.makeShellScriptWithLibrary {inherit dependencies name script;}
|