forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
61 lines (58 loc) · 1.99 KB
/
flake.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
{
description = "The Sourcegraph developer environment Nix Flake";
inputs = {
nixpkgs.url = "nixpkgs/nixos-22.11";
};
outputs = { self, nixpkgs }:
{
devShells = nixpkgs.lib.genAttrs
[ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ]
(system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlays.ctags ];
};
in
{
default = import ./shell.nix { inherit pkgs; };
}
);
# Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh.
overlays.ctags = self: super: rec {
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 = [ ];
});
};
# recursiveUpdate is just for recursively merging sets
packages = nixpkgs.lib.recursiveUpdate
{
x86_64-linux.p4-fusion-portable = self.packages.x86_64-linux.p4-fusion.overrideAttrs (oldAttrs: {
# patch the ELF interpreter for non-nix(os) distros.
postFixup = ''
patchelf \
--set-interpreter /lib64/ld-linux-x86-64.so.2 \
$out/bin/p4-fusion
'';
});
}
(
nixpkgs.lib.genAttrs [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ] (system:
let pkgs = import nixpkgs { inherit system; };
in
{
p4-fusion = pkgs.callPackage ./dev/nix/p4-fusion.nix { };
}
)
);
};
}