glusterfs: 10.1 -> 10.3

+3 -3
+2 -2
pkgs/tools/filesystems/glusterfs/default.nix
··· 55 ]; 56 in stdenv.mkDerivation rec { 57 pname = "glusterfs"; 58 - version = "10.1"; 59 60 src = fetchFromGitHub { 61 owner = "gluster"; 62 repo = pname; 63 rev = "v${version}"; 64 - sha256 = "sha256-vVFC2kQNneaOwrezPehOX32dpJb88ZhGHBApEXc9MOg="; 65 }; 66 inherit buildInputs propagatedBuildInputs; 67
··· 55 ]; 56 in stdenv.mkDerivation rec { 57 pname = "glusterfs"; 58 + version = "10.3"; 59 60 src = fetchFromGitHub { 61 owner = "gluster"; 62 repo = pname; 63 rev = "v${version}"; 64 + sha256 = "sha256-2+zdEbvXwfjAyeWpy0TAWRE0kvqSUqebmRyuhdfzYd0="; 65 }; 66 inherit buildInputs propagatedBuildInputs; 67
+1 -1
pkgs/tools/filesystems/glusterfs/ssl_cert_path.patch
··· 7 dnl Find out OpenSSL trusted certificates path 8 AC_MSG_CHECKING([for OpenSSL trusted certificates path]) 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 11 - AC_MSG_RESULT([$SSL_CERT_PATH]) 12 - AC_DEFINE_UNQUOTED(SSL_CERT_PATH, ["$SSL_CERT_PATH"], [Path to OpenSSL trusted certificates.]) 13 - AC_SUBST(SSL_CERT_PATH)
··· 7 dnl Find out OpenSSL trusted certificates path 8 AC_MSG_CHECKING([for OpenSSL trusted certificates path]) 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 11 - AC_MSG_RESULT([$SSL_CERT_PATH]) 12 - AC_DEFINE_UNQUOTED(SSL_CERT_PATH, ["$SSL_CERT_PATH"], [Path to OpenSSL trusted certificates.]) 13 - AC_SUBST(SSL_CERT_PATH)