summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2022-07-27 22:16:00 +0200
committerLuflosi <luflosi@luflosi.de>2022-07-28 17:27:52 +0200
commitd49fc40e4aa821698e844487f2fbdd85a3b585f2 (patch)
treeec4e83fecab7e0062383eafe4c712e93fc4713bb /pkgs/os-specific/linux
parentc8c8b2593f9d75ce2abee6cd722f97d3da2aa3b4 (diff)
downloadnixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.tar
nixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.tar.gz
nixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.tar.bz2
nixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.tar.lz
nixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.tar.xz
nixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.tar.zst
nixpkgs-d49fc40e4aa821698e844487f2fbdd85a3b585f2.zip
linuxPackages.apfs: unstable-2022-02-03 -> unstable-2022-07-24
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/apfs/default.nix16
1 files changed, 3 insertions, 13 deletions
diff --git a/pkgs/os-specific/linux/apfs/default.nix b/pkgs/os-specific/linux/apfs/default.nix
index 44cfefe6808..f7cf0c1b06c 100644
--- a/pkgs/os-specific/linux/apfs/default.nix
+++ b/pkgs/os-specific/linux/apfs/default.nix
@@ -1,30 +1,20 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , kernel
 }:
 
 stdenv.mkDerivation {
   pname = "apfs";
-  version = "unstable-2022-02-03-${kernel.version}";
+  version = "unstable-2022-07-24-${kernel.version}";
 
   src = fetchFromGitHub {
     owner = "linux-apfs";
     repo = "linux-apfs-rw";
-    rev = "a0d6a4dca69b6eab3cabaaee4d4284807828a266";
-    sha256 = "sha256-3T1BNc6g3SDTxb0VrronLUIp/CWbwnzXTsc8Qk5c4jY=";
+    rev = "925d86b7be3ccf21b17734cfececf40e43c4598e";
+    sha256 = "sha256-N5lGJu4c03cVDk3WTcegzZHBDmguPEX8dCedJS2TMSI=";
   };
 
-  patches = [
-    # Fix build for Linux 5.18+.
-    # https://github.com/linux-apfs/linux-apfs-rw/pull/24
-    (fetchpatch {
-      url = "https://github.com/linux-apfs/linux-apfs-rw/commit/93b93767acab614c4e6426c9fd38bdf9af00bc13.patch";
-      sha256 = "1ss7cal851qadcmkn3jcckpa2f003nzb03xsx1g8vkb1cl0n8gi7";
-    })
-  ];
-
   hardeningDisable = [ "pic" ];
   nativeBuildInputs = kernel.moduleBuildDependencies;