riscv-pk: Properly respect --prefix.

+6
+6
pkgs/misc/riscv-pk/default.nix
··· 26 26 27 27 hardeningDisable = [ "all" ]; 28 28 29 + postInstall = '' 30 + mv $out/* $out/.cleanup 31 + mv $out/.cleanup/* $out 32 + rmdir $out/.cleanup 33 + ''; 34 + 29 35 meta = { 30 36 description = "RISC-V Proxy Kernel and Bootloader."; 31 37 homepage = https://github.com/riscv/riscv-pk;