Unverified Commit 8b59e904 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

authentik: Unbreak on aarch64-linux (#397088)

parents 46e9e5fc 544753ae
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ let
    homepage = "https://goauthentik.io/";
    license = licenses.mit;
    platforms = platforms.linux;
    broken = stdenvNoCC.hostPlatform.isAarch64;
    broken = stdenvNoCC.buildPlatform != stdenvNoCC.hostPlatform;
    maintainers = with maintainers; [
      jvanbruegge
      risson
@@ -44,7 +44,7 @@ let

    sourceRoot = "source/website";

    outputHash = "sha256-GIFz1ku0bS/GaWehOp2z9Te9qpWt61DQrw0LA+z/XCk=";
    outputHash = "sha256-lPpphGi8l2X/fR9YoJv37piAe82oqSLAKHze8oTrGNc=";
    outputHashMode = "recursive";

    nativeBuildInputs = [
@@ -54,7 +54,7 @@ let

    buildPhase = ''
      npm ci --cache ./cache
      rm -r ./cache
      rm -r ./cache node_modules/@parcel/watcher-linux-* node_modules/.package-lock.json
    '';

    installPhase = ''