rpcbind: 1.2.6 -> 1.2.9 (#535136)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-27 23:54:57 +00:00
committed by GitHub
2 changed files with 12 additions and 6 deletions
+6
View File
@@ -31276,6 +31276,12 @@
github = "zuzuleinen";
githubId = 944919;
};
zwang20 = {
name = "Michael Wang";
github = "zwang20";
githubId = 41721295;
matrix = "@michael_wzq:matrix.org";
};
zx2c4 = {
email = "Jason@zx2c4.com";
github = "zx2c4";
+6 -6
View File
@@ -10,14 +10,14 @@
systemd,
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "rpcbind";
version = "1.2.6";
version = "1.2.9";
src = fetchgit {
url = "git://git.linux-nfs.org/projects/steved/rpcbind.git";
rev = "c0c89b3bf2bdf304a5fe3cab626334e0cdaf1ef2";
hash = "sha256-aidETIZaQYzC3liDGM915wyBWpMrn4OudxEcFS/Iucw=";
rev = "refs/tags/rpcbind-${builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version}";
hash = "sha256-uiUGSCUkFTFl+hqzXgJEjl4WZCcMi+QxuAGmY0g+fs4=";
};
patches = [
@@ -48,9 +48,9 @@ stdenv.mkDerivation {
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
homepage = "https://linux-nfs.org/";
maintainers = [ ];
maintainers = with lib.maintainers; [ zwang20 ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}
})