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