openafs: 1.8.14 → 1.8.15

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2026-03-02 11:22:00 -08:00
parent cf59864ef8
commit 6c7adc54b3
2 changed files with 3 additions and 18 deletions
-15
View File
@@ -28,21 +28,6 @@ stdenv.mkDerivation {
inherit src;
patches = [
# Linux: Use struct kiocb * for aops write_begin/end
(fetchpatch {
url = "https://github.com/openafs/openafs/commit/a765a9ddd412c8d1e5cb0f5cf497a8606251811e.patch";
hash = "sha256-RkIAdXMvelnWs4YB3OMj6AIQlUbSqdKJpwc6wiSZzrM=";
})
# linux: remove implied def HAVE_LINUX_FILEMAP_GET_FOLIO
(fetchpatch {
url = "https://github.com/openafs/openafs/commit/c379ff006d8b7db425f7648321c549ab24919d92.patch";
hash = "sha256-fDtX3NhWIWupTArEauCM2rEaO3l8jWBVC5mAMil2+nU=";
})
# LINUX: Zero code on EEXIST in afs_linux_read_cache
(fetchpatch {
url = "https://github.com/openafs/openafs/commit/eb6753d93b930ad7d65772a9751117f6969a5e92.patch";
hash = "sha256-97/MdG9DrHEtOKCRLCTgl6ZEtqLUsaNs9LcAzcyrTF4=";
})
# Linux: Use get_tree_nodev
(fetchpatch {
url = "https://gerrit.openafs.org/changes/16646/revisions/d8202bcd24c90cfef138e54264355d242d8f2f2a/patch";
+3 -3
View File
@@ -1,16 +1,16 @@
{ fetchurl }:
rec {
version = "1.8.14";
version = "1.8.15";
src = fetchurl {
url = "https://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2";
hash = "sha256-q1NpK5de3Y7tqIC0vDvADN3TT9DzFam0Y/Z5fSDGNFY=";
hash = "sha256-MvEN0kG12LhG5CWrnL8nW1VroYgL9998RZzZ60kFg1U=";
};
srcs = [
src
(fetchurl {
url = "https://www.openafs.org/dl/openafs/${version}/openafs-${version}-doc.tar.bz2";
hash = "sha256-iKa+hnZUllDJCYfj8VEgF+Cqold0ctiARp4p0LqBQlU=";
hash = "sha256-kAGRw3T0VdJ/XMqqFjV0Z7gzKbWeyZWEsMsBJ+7ijsE=";
})
];
}