last: add support for building on aarch64 darwin platform (#522213)

This commit is contained in:
Christian Kögler
2026-05-21 19:19:36 +00:00
committed by GitHub
+1 -1
View File
@@ -43,6 +43,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://gitlab.com/mcfrith/last";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ jbedo ];
platforms = lib.platforms.x86_64;
platforms = lib.platforms.x86_64 ++ [ "aarch64-darwin" ];
};
})