3
0
Fork 0
forked from mirrors/nixpkgs

odyssey: 1.2 -> 1.3

https://github.com/yandex/odyssey/releases/tag/1.3
This commit is contained in:
Mario Rodas 2022-07-09 04:20:00 +00:00
parent 9204ccd1c9
commit 0f77809f6e

View file

@ -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 = ''