-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.nix
28 lines (20 loc) · 1.06 KB
/
utils.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
wrapQuote = import ./nix/wrapQuote.nix;
# related to handling of globs of psc-package style deps
getGlobsQuoted = import ./nix/getGlobsQuoted.nix;
getGlobs = import ./nix/getGlobs.nix;
# make a copy hook for psc-package style deps
mkCopyHook = import ./nix/mkCopyHook.nix;
# make a default shell hook that will copy psc-package style dependencies
mkDefaultShellHook = import ./nix/mkDefaultShellHook.nix;
# make a shell derivation that will install psc-package style dependencies
mkInstallPackages = import ./nix/mkInstallPackages.nix;
# make a shell derivation that will compile psc-package style dependencies
mkCompilePscPackages = import ./nix/mkCompilePscPackages.nix;
# make a copy hook for bower style deps
mkBowerStyleCopyHook = import ./nix/mkBowerStyleCopyHook.nix;
# make a default shell hook that will copy bower style dependencies
mkBowerStyleShellHook = import ./nix/mkBowerStyleShellHook.nix;
# make a shell derivation that will install bower style depeendencies
mkInstallBowerStyle = import ./nix/mkInstallBowerStyle.nix;
}