nfs-ganesha: 5.9 -> 6.0 (#338272)

This commit is contained in:
Markus Kowalewski 2024-09-01 17:24:55 +02:00 committed by GitHub
commit 18051a0d7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View File

@ -4,15 +4,16 @@
stdenv.mkDerivation rec {
pname = "ntirpc";
version = "5.8";
version = "6.0.1";
src = fetchFromGitHub {
owner = "nfs-ganesha";
repo = "ntirpc";
rev = "v${version}";
sha256 = "sha256-t9InlnlwVts9mlrH8sHaaTYSrjJKlkFlGs1YCmZzjdE=";
sha256 = "sha256-Txtc0Oyt/WfZiMe26uMzx3HFq/YaeU6cYfjPQwh0uQg=";
};
outputs = [ "out" "dev" ];
postPatch = ''
substituteInPlace ntirpc/netconfig.h --replace "/etc/netconfig" "$out/etc/netconfig"
sed '1i#include <assert.h>' -i src/work_pool.c

View File

@ -5,14 +5,14 @@
stdenv.mkDerivation rec {
pname = "nfs-ganesha";
version = "5.9";
version = "6.0";
outputs = [ "out" "tools" ];
src = fetchFromGitHub {
owner = "nfs-ganesha";
repo = "nfs-ganesha";
rev = "V${version}";
sha256 = "sha256-YFQcqRZenJUdTnlYM7gPnIxU47dytSHk5ALdbpSf5Ms=";
sha256 = "sha256-tT8m4X2OgANreTljqAYcCN0HTu++boFBmzyha7XGo8Y=";
};
preConfigure = "cd src";