blob: 2aeae54a8e1b1d41eb225e8be04805bad61f7200 (
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;};
name = "install";
script = ./install.sh;
lib = import ../../lib {inherit pkgs shell-library;};
in
lib.makeShellScriptWithLibrary {inherit dependencies name script;}
|