forked from IntersectMBO/ouroboros-network
-
Notifications
You must be signed in to change notification settings - Fork 1
/
shell.nix
84 lines (74 loc) · 2.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# This file is used by nix-shell.
# It just takes the shell attribute from default.nix.
{ config ? { }, sourcesOverride ? { }, withHoogle ? false
, pkgs ? import ./nix { inherit config sourcesOverride; } }:
with pkgs;
let
# Haskell-language-server is pulled in with niv directly from its repositories
# at specific commit because the version we want is not yet in our hackage
# index (dictated by haskell.nix's version). Once it arrives we can pull it in
# specifying a version on the tools attribute set, something like:
#
# > tools = {
# > ...
# > haskell-language-server = "1.5.1.0";
#
# Note that the tools attribute comes from haskell-nix when defining the
# shellFor function. At the same time, the niv depencency will not be needed
# and it can be removed with `niv drop hls-released` (or manually removing the
# relevant entries from `sources.json`).
hls = import ./nix/hls.nix { inherit pkgs; };
# This provides a development environment that can be used with nix-shell or
# lorri. See https://input-output-hk.github.io/haskell.nix/user-guide/development/
shell = ouroborosNetworkHaskellPackages.shellFor {
name = "cabal-dev-shell";
packages = ps:
lib.attrValues (haskell-nix.haskellLib.selectProjectPackages ps);
# These programs will be available inside the nix-shell.
nativeBuildInputs = [
cabalWrapped
# we also add cabal (even if cabalWrapped will be used by default) for shell completion:
cabal
entr
fd
niv
pkgconfig
nixfmt
stylish-haskell
hls.hls
hls.hls-wrapper
hls.implicit-hie
];
tools = {
# IDE tools
ghcid = "0.8.7";
hasktags = "0.71.2";
# Draw graph of module dependencies
graphmod = "1.4.4";
# Profiling tools
profiteur = "0.4.6.0";
eventlog2html = "0.9.2";
hp2pretty = "0.10";
};
shellHook = ''
export LANG="en_US.UTF-8"
'' + lib.optionalString
(pkgs.glibcLocales != null && stdenv.hostPlatform.libc == "glibc") ''
export LOCALE_ARCHIVE="${pkgs.glibcLocales}/lib/locale/locale-archive"
'';
inherit withHoogle;
};
devops = pkgs.stdenv.mkDerivation {
name = "devops-shell";
buildInputs = [ niv ];
shellHook = ''
echo "DevOps Tools" \
| ${figlet}/bin/figlet -f banner -c \
| ${lolcat}/bin/lolcat
echo "NOTE: you may need to export GITHUB_TOKEN if you hit rate limits with niv"
echo "Commands:
* niv update <package> - update package
"
'';
};
in shell // { inherit devops; }