Compare commits

...

No commits in common. "e390c93e88221452d65b5b1244195e228959f5d2" and "4a6f1758c0383787d409fb78dfc337cfc8106f03" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,6 @@ pkgs.stdenv.mkDerivation {
unpackPhase = "unzip $src";
installPhase = ''
mkdir $out
# Let's copy everything but the bin folder
cp -r release/* $out
# Pleroma is using the project's root path (here the store path)
@ -34,7 +33,7 @@ pkgs.stdenv.mkDerivation {
# Patching it to move the tmp dir to the actual tmpdir
wrapProgram $out/bin/pleroma \
--set-default RELEASE_TMP "/tmp"
wrapProgram $out/bin/pleroma \
wrapProgram $out/bin/pleroma_ctl \
--set-default RELEASE_TMP "/tmp"'';
}