2020-09-01 13:16:34 +02:00
|
|
|
args@{ pkgs, ... }:
|
2020-03-14 00:03:57 +01:00
|
|
|
|
2020-09-01 13:16:34 +02:00
|
|
|
# This top-level module exposes all of my utility functions for Nix. It should
|
|
|
|
# be used like:
|
|
|
|
# ```nix
|
|
|
|
# inherit (briefcase.utils) fs;
|
|
|
|
# ```
|
2020-03-14 00:03:57 +01:00
|
|
|
|
2020-09-01 13:16:34 +02:00
|
|
|
let
|
|
|
|
builder = import ./builder.nix args;
|
|
|
|
fs = import ./fs.nix args;
|
|
|
|
in {
|
|
|
|
inherit builder fs;
|
2020-03-14 00:03:57 +01:00
|
|
|
}
|