about summary refs log tree commit diff
path: root/pkgs/tools/misc/odyssey
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-07-09 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-07-09 04:20:00 +0000
commit0f77809f6e45efed9dd6c22bfa98e108c69cf228 (patch)
treea32bd2c1274f24c3c15457ee6f2f0e9886c57307 /pkgs/tools/misc/odyssey
parent9204ccd1c9677596751b18badcf653d5435d2475 (diff)
odyssey: 1.2 -> 1.3
https://github.com/yandex/odyssey/releases/tag/1.3
Diffstat (limited to 'pkgs/tools/misc/odyssey')
-rw-r--r--pkgs/tools/misc/odyssey/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/odyssey/default.nix b/pkgs/tools/misc/odyssey/default.nix
index f154cffa9c6b7..f0a59e1d0aae4 100644
--- a/pkgs/tools/misc/odyssey/default.nix
+++ b/pkgs/tools/misc/odyssey/default.nix
@@ -1,18 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, cmake, openssl, postgresql }:
+{ lib, stdenv, fetchFromGitHub, cmake, openssl, postgresql, zstd }:
 
 stdenv.mkDerivation rec {
   pname = "odyssey";
-  version = "1.2";
+  version = "1.3";
 
   src = fetchFromGitHub {
     owner = "yandex";
     repo = pname;
     rev = version;
-    sha256 = "sha256-wxENqB9CmRVsQY9jTPUlpdiXpuqoU/2hRCY41f9uH3A=";
+    sha256 = "sha256-1ALTKRjpKmmFcAuhmgpcbJBkNuUlTyau8xWDRHh7gf0=";
   };
 
   nativeBuildInputs = [ cmake ];
-  buildInputs = [ openssl postgresql ];
+  buildInputs = [ openssl postgresql zstd ];
   cmakeFlags = [ "-DPQ_LIBRARY=${postgresql.lib}/lib" ];
 
   installPhase = ''