blob: 9d01e57ab5915e5a7a3c4e373e294fbf767bb3a5 (
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 gawk curl coreutils libuuid nix git;};
name = "activate";
script = ./activate.sh;
lib = import ../../lib {inherit pkgs shell-library;};
in
lib.makeShellScriptWithLibrary {inherit dependencies name script;}
|