glusterfs: 10.1 -> 10.3

+3 -3
+2 -2
pkgs/tools/filesystems/glusterfs/default.nix
··· 55 55 ]; 56 56 in stdenv.mkDerivation rec { 57 57 pname = "glusterfs"; 58 - version = "10.1"; 58 + version = "10.3"; 59 59 60 60 src = fetchFromGitHub { 61 61 owner = "gluster"; 62 62 repo = pname; 63 63 rev = "v${version}"; 64 - sha256 = "sha256-vVFC2kQNneaOwrezPehOX32dpJb88ZhGHBApEXc9MOg="; 64 + sha256 = "sha256-2+zdEbvXwfjAyeWpy0TAWRE0kvqSUqebmRyuhdfzYd0="; 65 65 }; 66 66 inherit buildInputs propagatedBuildInputs; 67 67
+1 -1
pkgs/tools/filesystems/glusterfs/ssl_cert_path.patch
··· 7 7 dnl Find out OpenSSL trusted certificates path 8 8 AC_MSG_CHECKING([for OpenSSL trusted certificates path]) 9 9 -SSL_CERT_PATH=$(openssl version -d | sed -e 's|OPENSSLDIR: "\(.*\)".*|\1|') 10 - -if test -d $SSL_CERT_PATH 1>/dev/null 2>&1; then 10 + -if test -d "${SSL_CERT_PATH}" 1>/dev/null 2>&1; then 11 11 - AC_MSG_RESULT([$SSL_CERT_PATH]) 12 12 - AC_DEFINE_UNQUOTED(SSL_CERT_PATH, ["$SSL_CERT_PATH"], [Path to OpenSSL trusted certificates.]) 13 13 - AC_SUBST(SSL_CERT_PATH)