From d199bfdf09aa82a44f39cd6f67f8b0d05edcafc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 30 Aug 2024 08:16:14 +0200 Subject: [PATCH] nfs-utils: 2.6.4 -> 2.7.1 The previous version wouldn't build anymore, maybe after kerberos update https://hydra.nixos.org/build/270621926/nixlog/1/tail --- pkgs/os-specific/linux/nfs-utils/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/nfs-utils/default.nix b/pkgs/os-specific/linux/nfs-utils/default.nix index e3b8bc97e4d7..89f4ae7c97f2 100644 --- a/pkgs/os-specific/linux/nfs-utils/default.nix +++ b/pkgs/os-specific/linux/nfs-utils/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, fetchpatch, lib, pkg-config, util-linux, libcap, libtirpc, libevent , sqlite, libkrb5, kmod, libuuid, keyutils, lvm2, systemd, coreutils, tcp_wrappers -, python3, buildPackages, nixosTests, rpcsvc-proto, openldap +, python3, buildPackages, nixosTests, rpcsvc-proto, openldap, libxml2 , enablePython ? true, enableLdap ? true }: @@ -10,11 +10,11 @@ in stdenv.mkDerivation rec { pname = "nfs-utils"; - version = "2.6.4"; + version = "2.7.1"; src = fetchurl { url = "mirror://kernel/linux/utils/nfs-utils/${version}/${pname}-${version}.tar.xz"; - hash = "sha256-AbOw+5x9C7q/URTHNlQgMHSMeI7C/Zc0dEIB6bChEZ0="; + hash = "sha256-iFyUioSli8pBSPRZWI+ac2nbtA3MRm8E5FXGsQ/Qqkg="; }; # libnfsidmap is built together with nfs-utils from the same source, @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { buildInputs = [ libtirpc libcap libevent sqlite lvm2 - libuuid keyutils libkrb5 tcp_wrappers + libuuid keyutils libkrb5 tcp_wrappers libxml2 ] ++ lib.optional enablePython python3 ++ lib.optional enableLdap openldap;