about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-04-24 10:11:57 +0800
committerGitHub <noreply@github.com>2023-04-24 10:11:57 +0800
commitf48a45c883479a078543fafdb2a66e4f06656d66 (patch)
treeb477a1d0f4616fa8602bac434388e18b07e14ed0 /pkgs/tools/filesystems
parentf76604fb8270295fe21bbf8efed74ebb23188f2b (diff)
parenta837020120f58d3ef446a84014a34a7611274e33 (diff)
Merge pull request #226527 from Luflosi/update/apfsprogs
apfsprogs: unstable-2022-10-15 -> unstable-2023-03-21
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/apfsprogs/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/apfsprogs/default.nix b/pkgs/tools/filesystems/apfsprogs/default.nix
index f35c9a696d134..8ed9f3b2c0460 100644
--- a/pkgs/tools/filesystems/apfsprogs/default.nix
+++ b/pkgs/tools/filesystems/apfsprogs/default.nix
@@ -1,17 +1,18 @@
 { lib
 , stdenv
 , fetchFromGitHub
+, nixosTests
 }:
 
 stdenv.mkDerivation {
   pname = "apfsprogs";
-  version = "unstable-2022-10-15";
+  version = "unstable-2023-03-21";
 
   src = fetchFromGitHub {
     owner = "linux-apfs";
     repo = "apfsprogs";
-    rev = "e3d5eec21da31107457f868f7f37c48c6809b7fa";
-    hash = "sha256-gxcsWLIs2+28SOLLeAP7iP6MaLE445CKTlD+gVE6V5g=";
+    rev = "be41cc38194bd41a41750631577e6d8b31953103";
+    hash = "sha256-9o8DKXyK5qIoVGVKMJxsinEkbJImyuDglf534kanzFE=";
   };
 
   buildPhase = ''
@@ -28,6 +29,10 @@ stdenv.mkDerivation {
     runHook postInstall
   '';
 
+  passthru.tests = {
+    apfs = nixosTests.apfs;
+  };
+
   meta = with lib; {
     description = "Experimental APFS tools for linux";
     homepage = "https://github.com/linux-apfs/apfsprogs";