tox-node: fix build

The custom installPhase got broken as the rust build scripts only
provide $releaseDir in postInstall hooks. The default rust installPhase
installs the same files, so the custom one is unnecessary.
This commit is contained in:
Jakub Kądziołka 2021-02-26 18:55:59 +01:00
parent 8e5a172d0c
commit 3bd0b03fb3
No known key found for this signature in database
GPG key ID: E315A75846131564

View file

@ -21,14 +21,6 @@ buildRustPackage rec {
SODIUM_USE_PKG_CONFIG = "yes";
installPhase = ''
runHook preInstall
install -D $releaseDir/tox-node $out/bin/tox-node
runHook postInstall
'';
doCheck = false;
cargoSha256 = "sha256-kCT2ulB+c2OlsABkyXyzrHfD/G92EPCdTO34FR5oSws=";