3
0
Fork 0
forked from mirrors/nixpkgs

apfsprogs: unstable-2021-08-24 -> unstable-2021-10-26

Also fix a problem where the man pages would be installed in the wrong location, $out/share/man8 instead of $out/share/man/man8. I accidentally copied this mistake from the AUR.
This commit is contained in:
Luflosi 2021-10-09 16:44:30 +02:00
parent 05c7fdb190
commit fee075c547
No known key found for this signature in database
GPG key ID: 4E41E29EDCC345D0

View file

@ -5,13 +5,13 @@
stdenv.mkDerivation {
pname = "apfsprogs";
version = "unstable-2021-08-24";
version = "unstable-2021-10-26";
src = fetchFromGitHub {
owner = "linux-apfs";
repo = "apfsprogs";
rev = "5efac5a701bcb56e23cfc182b5b3901bff27d343";
sha256 = "sha256-vQE586HwrPkF0uaTKrJ7yXb24ntRI0QmBla7N2ErAU8=";
rev = "05ecfa367a8142e289dc76333294271b5edfe395";
sha256 = "sha256-McGQG8f12DTp/It8KjMHGyfE5tgmgLd7MZlZIn/xC+E=";
};
buildPhase = ''
@ -23,8 +23,8 @@ stdenv.mkDerivation {
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
make -C apfsck install DESTDIR="$out" $installFlags
make -C mkapfs install DESTDIR="$out" $installFlags
runHook postInstall
'';