nixos/crab-hole: init (#341598)
[NixPkgs.git] / pkgs / servers / nosql / influxdb2 / default.nix
blob56277135f041d4d691d91c8df7135494d259b184
2   buildGoModule,
3   fetchFromGitHub,
4   fetchurl,
5   fetchpatch,
6   go-bindata,
7   lib,
8   perl,
9   pkg-config,
10   rustPlatform,
11   stdenv,
12   libiconv,
13   nixosTests,
16 let
17   version = "2.7.6";
18   ui_version = "OSS-v2.7.1";
19   libflux_version = "0.194.5";
21   src = fetchFromGitHub {
22     owner = "influxdata";
23     repo = "influxdb";
24     rev = "v${version}";
25     hash = "sha256-0gqFUIV0ETdVuVmC+SwoKsO6OkoT/s+qKO1f8fkaZj4=";
26   };
28   ui = fetchurl {
29     url = "https://github.com/influxdata/ui/releases/download/${ui_version}/build.tar.gz";
30     hash = "sha256-0k59SKvt9pFt3WSd5PRUThbfbctt2RYtaxaxoyLICm8=";
31   };
33   flux = rustPlatform.buildRustPackage {
34     pname = "libflux";
35     version = "v${libflux_version}";
36     src = fetchFromGitHub {
37       owner = "influxdata";
38       repo = "flux";
39       rev = "v${libflux_version}";
40       hash = "sha256-XHT/+JMu5q1cPjZT2x/OKEPgxFJcnjrQKqn8w9/Mb3s=";
41     };
42     patches = [
43       # Fix build on Rust 1.78 (included after v0.195.0)
44       (fetchpatch {
45         name = "fix-build-on-rust-1.78.patch";
46         url = "https://github.com/influxdata/flux/commit/68c831c40b396f0274f6a9f97d77707c39970b02.patch";
47         stripLen = 2;
48         extraPrefix = "";
49         excludes = [ ];
50         hash = "sha256-6LOTgbOCfETNTmshyXgtDZf9y4t/2iqRuVPkz9dYPHc=";
51       })
52       ./fix-unsigned-char.patch
53     ];
54     sourceRoot = "${src.name}/libflux";
55     cargoHash = "sha256-O+t4f4P5291BuyARH6Xf3LejMFEQEBv+qKtyjHRhclA=";
56     nativeBuildInputs = [ rustPlatform.bindgenHook ];
57     buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
58     pkgcfg = ''
59       Name: flux
60       Version: ${libflux_version}
61       Description: Library for the InfluxData Flux engine
62       Cflags: -I/out/include
63       Libs: -L/out/lib -lflux -lpthread
64     '';
65     passAsFile = [ "pkgcfg" ];
66     postInstall =
67       ''
68         mkdir -p $out/include $out/pkgconfig
69         cp -r $NIX_BUILD_TOP/source/libflux/include/influxdata $out/include
70         substitute $pkgcfgPath $out/pkgconfig/flux.pc \
71           --replace /out $out
72       ''
73       + lib.optionalString stdenv.hostPlatform.isDarwin ''
74         install_name_tool -id $out/lib/libflux.dylib $out/lib/libflux.dylib
75       '';
76   };
79 buildGoModule {
80   pname = "influxdb";
81   version = version;
82   inherit src;
84   nativeBuildInputs = [
85     go-bindata
86     pkg-config
87     perl
88   ];
90   vendorHash = "sha256-3Vf8BCrOwliXrH+gmZ4RJ1YBEbqL0Szx2prW3ie9CNg=";
91   subPackages = [
92     "cmd/influxd"
93     "cmd/telemetryd"
94   ];
96   PKG_CONFIG_PATH = "${flux}/pkgconfig";
98   postPatch = ''
99     # use go-bindata from environment
100     substituteInPlace static/static.go \
101       --replace 'go run github.com/kevinburke/go-bindata/' ""
102   '';
104   # Check that libflux and the UI are at the right version, and embed
105   # the UI assets into the Go source tree.
106   preBuild = ''
107     (
108       flux_ver=$(grep github.com/influxdata/flux go.mod | awk '{print $2}')
109       if [ "$flux_ver" != "v${libflux_version}" ]; then
110         echo "go.mod wants libflux $flux_ver, but nix derivation provides ${libflux_version}"
111         exit 1
112       fi
114       ui_ver=$(egrep 'UI_RELEASE=".*"' scripts/fetch-ui-assets.sh | cut -d'"' -f2)
115       if [ "$ui_ver" != "${ui_version}" ]; then
116         echo "scripts/fetch-ui-assets.sh wants UI $ui_ver, but nix derivation provides ${ui_version}"
117         exit 1
118       fi
119     )
121     mkdir -p static/data
122     tar -xzf ${ui} -C static/data
123     pushd static
124     go generate
125     popd
126   '';
128   tags = [ "assets" ];
130   ldflags = [
131     "-X main.commit=v${version}"
132     "-X main.version=${version}"
133   ];
135   passthru.tests = { inherit (nixosTests) influxdb2; };
137   meta = with lib; {
138     description = "Open-source distributed time series database";
139     license = licenses.mit;
140     homepage = "https://influxdata.com/";
141     maintainers = with maintainers; [ abbradar ];
142   };