Martin Weinelt 2021-06-03 04:39:30 +02:00
parent 928ed6f2c7
commit 16c2003c1f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,6 +1,6 @@
{lib, stdenv, fetchFromGitHub, fuse, bison, flex_2_5_35, openssl, python3, ncurses, readline, {lib, stdenv, fetchFromGitHub, fuse, bison, flex_2_5_35, openssl, python3, ncurses, readline,
autoconf, automake, libtool, pkg-config, zlib, libaio, libxml2, acl, sqlite, autoconf, automake, libtool, pkg-config, zlib, libaio, libxml2, acl, sqlite,
liburcu, attr, makeWrapper, coreutils, gnused, gnugrep, which, liburcu, liburing, attr, makeWrapper, coreutils, gnused, gnugrep, which,
openssh, gawk, findutils, util-linux, lvm2, btrfs-progs, e2fsprogs, xfsprogs, systemd, openssh, gawk, findutils, util-linux, lvm2, btrfs-progs, e2fsprogs, xfsprogs, systemd,
rsync, glibc, rpcsvc-proto, libtirpc rsync, glibc, rpcsvc-proto, libtirpc
}: }:
@ -17,6 +17,7 @@ let
fuse bison flex_2_5_35 openssl ncurses readline fuse bison flex_2_5_35 openssl ncurses readline
autoconf automake libtool pkg-config zlib libaio libxml2 autoconf automake libtool pkg-config zlib libaio libxml2
acl sqlite liburcu attr makeWrapper util-linux libtirpc acl sqlite liburcu attr makeWrapper util-linux libtirpc
liburing
(python3.withPackages (pkgs: [ (python3.withPackages (pkgs: [
pkgs.flask pkgs.flask
pkgs.prettytable pkgs.prettytable
@ -54,13 +55,13 @@ let
]; ];
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "glusterfs"; pname = "glusterfs";
version = "9.0"; version = "9.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "gluster"; owner = "gluster";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-pjJQAFEb44yNqvNAOclZsiEDZBgcfIxliD3La1IsKPs="; sha256 = "00y2xs7nj4d59x4fp6gq7qql3scykq9lppdvx7y3xbgfmkrwixx9";
}; };
inherit buildInputs propagatedBuildInputs; inherit buildInputs propagatedBuildInputs;