nfs-ganesha: 5.5 -> 5.5.1

This commit is contained in:
Markus Kowalewski 2023-06-18 10:26:34 +02:00
parent 0ebb3b6ed8
commit f87196c84d

View file

@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "nfs-ganesha";
version = "5.5";
version = "5.5.1";
src = fetchFromGitHub {
owner = "nfs-ganesha";
repo = "nfs-ganesha";
rev = "V${version}";
sha256 = "sha256-ebnR/ukbVTwpFNzGf189NmsaDh97ThEGWew5kp50UGg=";
sha256 = "sha256-fbulqSRHPdlpoLH391/axxtjJ7G/9lH9BdqoLKRuIuE=";
};
preConfigure = "cd src";
@ -42,6 +42,10 @@ stdenv.mkDerivation rec {
nfs-utils
];
postFixup = ''
patchelf --add-rpath $out/lib $out/bin/ganesha.nfsd
'';
meta = with lib; {
description = "NFS server that runs in user space";
homepage = "https://github.com/nfs-ganesha/nfs-ganesha/wiki";