forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
101 lines (85 loc) · 2.82 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Experimental support for developing in nix. Please reach out to @keegan if
# you encounter any issues.
#
# Things it does differently:
#
# - Runs postgres under ~/.sourcegraph with a unix socket. No need to manage a
# service. Must remember to run "pg_ctl stop" if you want to stop it.
#
# Status: everything works on linux. Go1.17 is currently broken on
# darwin. https://github.com/NixOS/nixpkgs/commit/9675a865c9c3eeec36c06361f7215e109925654c
let
# Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh.
ctags-overlay = (self: super: {
universal-ctags = super.universal-ctags.overrideAttrs (old: {
version = "5.9.20220403.0";
src = super.fetchFromGitHub {
owner = "universal-ctags";
repo = "ctags";
rev = "f95bb3497f53748c2b6afc7f298cff218103ab90";
sha256 = "sha256-pd89KERQj6K11Nue3YFNO+NLOJGqcMnHkeqtWvMFk38=";
};
# disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.`
doCheck = false;
checkFlags = [ ];
});
});
# Pin a specific version of nixpkgs to ensure we get the same packages.
pkgs = import
(fetchTarball {
url =
"https://github.com/NixOS/nixpkgs/archive/6f38b43c8c84c800f93465b2241156419fd4fd52.tar.gz";
sha256 = "0xw3y3jx1bcnwsc0imacbp5m8f51b66s9h8kk8qnfbckwv67dhgd";
})
{ overlays = [ ctags-overlay ]; };
# pkgs.universal-ctags installs the binary as "ctags", not "universal-ctags"
# like zoekt expects.
universal-ctags = pkgs.writeScriptBin "universal-ctags" ''
#!${pkgs.stdenv.shell}
exec ${pkgs.universal-ctags}/bin/ctags "$@"
'';
in
pkgs.mkShell {
name = "sourcegraph-dev";
# The packages in the `buildInputs` list will be added to the PATH in our shell
nativeBuildInputs = with pkgs; [
rnix-lsp
# Our core DB.
postgresql_13
# Cache and some store data
redis
# Used by symbols and zoekt-git-index to extract symbols from
# sourcecode.
universal-ctags
# Build our backend.
go_1_19
# Lots of our tooling and go tests rely on git et al.
git
parallel
nssTools
# CI lint tools you need locally
shfmt
shellcheck
golangci-lint
# Web tools. Need node 16.7 so we use unstable. Yarn should also be built
# against it.
nodejs-16_x
(yarn.override { nodejs = nodejs-16_x; })
nodePackages.typescript
cargo
rustc
rustfmt
libiconv
clippy
];
# Startup postgres
shellHook = ''
. ./dev/nix/shell-hook.sh
'';
hardeningDisable = [ "fortify" ];
# By explicitly setting this environment variable we avoid starting up
# universal-ctags via docker.
CTAGS_COMMAND = "${universal-ctags}/bin/universal-ctags";
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
DEV_WEB_BUILDER = "esbuild";
}