From 08c129fdf343787fbee7dc3dd250b414fa382681 Mon Sep 17 00:00:00 2001 From: Amanda Cameron Date: Thu, 22 Sep 2022 17:16:28 -0400 Subject: [PATCH] pleroma: Add stripDebug=false (#192472) With https://github.com/NixOS/nixpkgs/pull/191237 the debug information is getting stripped by mixRelease. This seems to break pleroma for some reason I don't understand. This commit triggers the escape hatch added by the PR, to pleroma to work again. I confirmed this with the NixOS pleroma test. --- pkgs/servers/pleroma/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/pleroma/default.nix b/pkgs/servers/pleroma/default.nix index 3bea304ebc9d..e4204f28f1d5 100644 --- a/pkgs/servers/pleroma/default.nix +++ b/pkgs/servers/pleroma/default.nix @@ -16,6 +16,7 @@ beamPackages.mixRelease rec { rev = "v${version}"; sha256 = "sha256-x8j/2Eot/EEHsedgZntB5MPxlYMNDlFyZtmiMdhcS7U="; }; + stripDebug = false; mixNixDeps = import ./mix.nix { inherit beamPackages lib;