Merge pull request #181701 from ken-matsui/fix-cpm

cpm: add missing `runHook` for `installPhase`
This commit is contained in:
Bobby Rong 2022-07-16 16:50:25 +08:00 committed by GitHub
commit 8fecbf7d5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,12 @@ stdenvNoCC.mkDerivation rec {
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p ${placeholder "out"}/share/cpm/
cp ./cmake/CPM.cmake ${placeholder "out"}/share/cpm/
runHook postInstall
'';
meta = with lib; {