aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/flatbuffers
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-25 21:27:23 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-25 21:27:23 -0800
commit9ffc5b37257eaa256346cf34db44741fbf8f1c0e (patch)
treec937561410cb3e1dd5c610d0ccfd697afc07ce7e /pkgs/development/libraries/flatbuffers
parent0fadb81af44fe7f43581a276d2ca863bdb64dd67 (diff)
flatbuffers: 1.4.0 -> 1.8.0
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/2zfi5j6wmfb6hbaqmmsbarbjz8r5f333-flatbuffers-1.8.0/bin/flatc --version` and found version 1.8.0 - found 1.8.0 with grep in /nix/store/2zfi5j6wmfb6hbaqmmsbarbjz8r5f333-flatbuffers-1.8.0 - found 1.8.0 in filename of file in /nix/store/2zfi5j6wmfb6hbaqmmsbarbjz8r5f333-flatbuffers-1.8.0
Diffstat (limited to 'pkgs/development/libraries/flatbuffers')
-rw-r--r--pkgs/development/libraries/flatbuffers/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/flatbuffers/default.nix b/pkgs/development/libraries/flatbuffers/default.nix
index add520558ba9..fb74c4ff4d24 100644
--- a/pkgs/development/libraries/flatbuffers/default.nix
+++ b/pkgs/development/libraries/flatbuffers/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "flatbuffers-${version}";
- version = "1.4.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "google";
repo = "flatbuffers";
rev = "v${version}";
- sha256 = "0jsqk49h521d5h4c9gk39a8968g6rcd6520a8knbfc7ssc4028y0";
+ sha256 = "1qq8qbv8wkiiizj8s984f17bsbjsrhbs9q1nw1yjgrw0grcxlsi9";
};
buildInputs = [ cmake ];