Merge pull request #226527 from Luflosi/update/apfsprogs

apfsprogs: unstable-2022-10-15 -> unstable-2023-03-21
This commit is contained in:
Nick Cao 2023-04-24 10:11:57 +08:00 committed by GitHub
commit f48a45c883
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,18 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, nixosTests
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "apfsprogs"; pname = "apfsprogs";
version = "unstable-2022-10-15"; version = "unstable-2023-03-21";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "linux-apfs"; owner = "linux-apfs";
repo = "apfsprogs"; repo = "apfsprogs";
rev = "e3d5eec21da31107457f868f7f37c48c6809b7fa"; rev = "be41cc38194bd41a41750631577e6d8b31953103";
hash = "sha256-gxcsWLIs2+28SOLLeAP7iP6MaLE445CKTlD+gVE6V5g="; hash = "sha256-9o8DKXyK5qIoVGVKMJxsinEkbJImyuDglf534kanzFE=";
}; };
buildPhase = '' buildPhase = ''
@ -28,6 +29,10 @@ stdenv.mkDerivation {
runHook postInstall runHook postInstall
''; '';
passthru.tests = {
apfs = nixosTests.apfs;
};
meta = with lib; { meta = with lib; {
description = "Experimental APFS tools for linux"; description = "Experimental APFS tools for linux";
homepage = "https://github.com/linux-apfs/apfsprogs"; homepage = "https://github.com/linux-apfs/apfsprogs";