pleroma: fix build with libxcrypt

authored by Franz Pletz and committed by Martin Weinelt 9430efb5 2c10e089

+3
+3
pkgs/servers/pleroma/default.nix
··· 1 { lib, beamPackages 2 , fetchFromGitHub, fetchFromGitLab 3 , file, cmake 4 , nixosTests, writeText 5 , ... 6 }: ··· 129 postInstall = "mv $out/lib/erlang/lib/crypt-${version}/priv/{source,crypt}.so"; 130 131 beamDeps = with final; [ elixir_make ]; 132 }; 133 web_push_encryption = beamPackages.buildMix rec { 134 name = "web_push_encryption";
··· 1 { lib, beamPackages 2 , fetchFromGitHub, fetchFromGitLab 3 , file, cmake 4 + , libxcrypt 5 , nixosTests, writeText 6 , ... 7 }: ··· 130 postInstall = "mv $out/lib/erlang/lib/crypt-${version}/priv/{source,crypt}.so"; 131 132 beamDeps = with final; [ elixir_make ]; 133 + 134 + buildInputs = [ libxcrypt ]; 135 }; 136 web_push_encryption = beamPackages.buildMix rec { 137 name = "web_push_encryption";