about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/glusterfs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2015-06-14 11:23:42 +0300
committerMichael Raskin <7c6f434c@mail.ru>2015-06-14 11:23:42 +0300
commitf39c3ebf047c3fc7274a7f83f204ef1d94de6898 (patch)
tree52749a3d5030e5c59e69dc95d7865f89cedd75e6 /pkgs/tools/filesystems/glusterfs
parent2b35cccc5b161d95e09150a5f82ecef8d231bb97 (diff)
downloadnixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.tar
nixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.tar.gz
nixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.tar.bz2
nixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.tar.lz
nixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.tar.xz
nixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.tar.zst
nixlib-f39c3ebf047c3fc7274a7f83f204ef1d94de6898.zip
Update GlusterFS, adding new dependencies
Diffstat (limited to 'pkgs/tools/filesystems/glusterfs')
-rw-r--r--pkgs/tools/filesystems/glusterfs/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/tools/filesystems/glusterfs/default.nix b/pkgs/tools/filesystems/glusterfs/default.nix
index bfab9454d6df..57b36875a51d 100644
--- a/pkgs/tools/filesystems/glusterfs/default.nix
+++ b/pkgs/tools/filesystems/glusterfs/default.nix
@@ -1,18 +1,21 @@
 {stdenv, fetchurl, fuse, bison, flex_2_5_35, openssl, python, ncurses, readline,
- autoconf, automake, libtool, pkgconfig, zlib, libaio, libxml2}:
+ autoconf, automake, libtool, pkgconfig, zlib, libaio, libxml2, acl, sqlite
+ , liburcu, attr
+}:
 let 
   s = # Generated upstream information 
   rec {
     baseName="glusterfs";
-    version="3.6.3";
+    version="3.7.1";
     name="${baseName}-${version}";
-    hash="084zkc1jd5ggkfl0f5d4s7lra5xgildnphyf6ywzxrb7g44vk0d4";
-    url="http://download.gluster.org/pub/gluster/glusterfs/3.6/3.6.3/glusterfs-3.6.3.tar.gz";
-    sha256="084zkc1jd5ggkfl0f5d4s7lra5xgildnphyf6ywzxrb7g44vk0d4";
+    hash="0d1bcijwvc3rhr24xsn7nnp0b5xwlwvybamb05jzja5m7hapydpw";
+    url="http://download.gluster.org/pub/gluster/glusterfs/3.7/3.7.1/glusterfs-3.7.1.tar.gz";
+    sha256="0d1bcijwvc3rhr24xsn7nnp0b5xwlwvybamb05jzja5m7hapydpw";
   };
   buildInputs = [
     fuse bison flex_2_5_35 openssl python ncurses readline
     autoconf automake libtool pkgconfig zlib libaio libxml2
+    acl sqlite liburcu attr
   ];
 in
 stdenv.mkDerivation