mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #226527 from Luflosi/update/apfsprogs
apfsprogs: unstable-2022-10-15 -> unstable-2023-03-21
This commit is contained in:
commit
f48a45c883
1 changed files with 8 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue