aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/simdjson/.yandex_meta/override.nix
blob: e1a55bed5497a2100b69c1ec90639295c6d8670d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pkgs: attrs: with pkgs; rec {
  version = "3.10.1";

  src = fetchFromGitHub {
    owner = "simdjson";
    repo = "simdjson";
    rev = "v${version}";
    hash = "sha256-UfGt5lKmpqc21Hln4t/4KJfg+3V/hqX3UYgpCvlhkrM=";
  };

  cmakeFlags = attrs.cmakeFlags ++ [
    "-DSIMDJSON_ENABLE_THREADS=OFF"
  ];
}