apfsprogs: init at unstable-2021-05-07

This commit is contained in:
Luflosi 2021-06-09 21:23:43 +02:00
parent e233cf240a
commit 5d06ef0e1e
No known key found for this signature in database
GPG key ID: 4E41E29EDCC345D0
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation {
pname = "apfsprogs";
version = "unstable-2021-05-07";
src = fetchFromGitHub {
owner = "linux-apfs";
repo = "apfsprogs";
rev = "d360211a30608a907e3ee8ad4468d606c40ec2d7";
sha256 = "sha256-SeFs/GQfIEvnxERyww+mnynjR7E02DdtBA6JsknEM+Q=";
};
buildPhase = ''
runHook preBuild
make -C apfsck $makeFlags
make -C mkapfs $makeFlags
runHook postBuild
'';
installPhase = ''
runHook preInstall
make -C apfsck install BINDIR="$out/bin" MANDIR="$out/share/man8" $installFlags
make -C mkapfs install BINDIR="$out/bin" MANDIR="$out/share/man8" $installFlags
runHook postInstall
'';
meta = with lib; {
description = "Experimental APFS tools for linux";
homepage = "https://github.com/linux-apfs/apfsprogs";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ Luflosi ];
};
}

View file

@ -1067,6 +1067,8 @@ in
apfs-fuse = callPackage ../tools/filesystems/apfs-fuse { };
apfsprogs = callPackage ../tools/filesystems/apfsprogs { };
apk-tools = callPackage ../tools/package-management/apk-tools {
lua = lua5_3;
};