1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

Merge pull request #107807 from flokli/libraspberrypi-fix-output

libraspberrypi: fix output
This commit is contained in:
Florian Klink 2020-12-28 17:08:36 +01:00 committed by GitHub
commit 0b8b53eec0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
cmakeFlags = [
(if (stdenv.hostPlatform.isAarch64) then "-DARM64=ON" else "-DARM64=OFF")
"-DVMCS_INSTALL_PREFIX=$out"
"-DVMCS_INSTALL_PREFIX=${placeholder "out"}"
];
meta = with stdenv.lib; {