forked from urbit/urbit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
shell.nix
45 lines (37 loc) · 1.56 KB
/
shell.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# A repository wide shell.nix containing all tools, formatters, and inputs
# required to build any of the C packages.
#
# Entering a nix-shell using this derivation will allow you to cd anywhere
# in the ./pkg directory and run the appropriate build tooling.
#
# See the individual ./pkg/* directories for shell.nix derivations that only
# propagate minimal sets of buildInputs for the related package.
# (import ./default.nix { }).shell
let
pkgs = import ./nix/default.nix { };
pkgsLocal = import ./default.nix { };
# The packages from which build inputs (dependencies) will be propagated into
# the shell.
#
# For example, adding urbit here results in gmp, h2o, zlib, etc. being
# made available, so you can just run make.
#
# Typically the inputs listed here also have a shell.nix in their respective
# source directory you can use directly.
inputsFrom = with pkgsLocal; [ ent urbit urcrypt ];
# Collect the named attribute from all dependencies listed in inputsFrom.
mergeFrom = name: pkgs.lib.concatLists (pkgs.lib.catAttrs name inputsFrom);
in pkgs.mkShell {
# Nixpkgs tools to make available on the shell's PATH.
buildInputs = [
pkgs.cacert
pkgs.nixpkgs-fmt
pkgs.shfmt
(import pkgs.sources.niv { }).niv
] ++ mergeFrom "buildInputs";
nativeBuildInputs = mergeFrom "nativeBuildInputs";
propagatedBuildInputs = mergeFrom "propagatedBuildInputs";
propagatedNativeBuildInputs = mergeFrom "propagatedNativeBuildInputs";
shellHook = pkgs.lib.concatStringsSep "\n"
(pkgs.lib.catAttrs "shellHook" (pkgs.lib.reverseList inputsFrom));
}