Merge pull request #158332 from InternetUnexplorer/phinger-cursors-fix-install

phinger-cursors: fix installPhase including env-vars in output
This commit is contained in:
Bobby Rong 2022-02-06 18:09:16 +08:00 committed by GitHub
commit 2e502cce72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ stdenvNoCC.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -r ./ $out/share/icons
cp -r ./phinger-cursors* $out/share/icons
runHook postInstall
'';