summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-22 14:13:49 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-03-22 14:13:49 +0000
commit47c947241ee35d2baed14cb92ed89a745d8fe844 (patch)
treea8f72eb77957278dfd76b566b1d9024aef3e1606 /pkgs/tools/filesystems
parent93144e0f4a5b21f561e4adda8a73d477d069b703 (diff)
downloadnixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.tar
nixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.tar.gz
nixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.tar.bz2
nixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.tar.lz
nixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.tar.xz
nixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.tar.zst
nixpkgs-47c947241ee35d2baed14cb92ed89a745d8fe844.zip
glusterfs: 7.3 -> 7.4
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/glusterfs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/glusterfs/default.nix b/pkgs/tools/filesystems/glusterfs/default.nix
index dad032073c0..5cc6e5c156b 100644
--- a/pkgs/tools/filesystems/glusterfs/default.nix
+++ b/pkgs/tools/filesystems/glusterfs/default.nix
@@ -15,10 +15,10 @@ let
     #       The command
     #         find /nix/store/...-glusterfs-.../ -name '*.py' -executable
     #       can help with finding new Python scripts.
-    version = "7.3";
+    version = "7.4";
     name="${baseName}-${version}";
     url="https://github.com/gluster/glusterfs/archive/v${version}.tar.gz";
-    sha256 = "08g8394vk88cb71z4k5sknld1nsd20f4mk2yyjvdp1hwm97z12pq";
+    sha256 = "1f7z1dacnx7pd3ri4nka6851fzhdfandbf94blds8bqfqc1263h6";
   };
 
   buildInputs = [
@@ -186,7 +186,7 @@ stdenv.mkDerivation
   meta = with stdenv.lib; {
     inherit (s) version;
     description = "Distributed storage system";
-    homepage = https://www.gluster.org;
+    homepage = "https://www.gluster.org";
     license = licenses.lgpl3Plus; # dual licese: choice of lgpl3Plus or gpl2
     maintainers = [ maintainers.raskin ];
     platforms = with platforms; linux ++ freebsd;