riscv-pk: Properly respect --prefix.

This commit is contained in:
Shea Levy 2018-02-20 10:29:43 -05:00
parent 8c9a8d6805
commit 6c4ac28b6f
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27

View File

@ -26,6 +26,12 @@ in stdenv.mkDerivation {
hardeningDisable = [ "all" ];
postInstall = ''
mv $out/* $out/.cleanup
mv $out/.cleanup/* $out
rmdir $out/.cleanup
'';
meta = {
description = "RISC-V Proxy Kernel and Bootloader.";
homepage = https://github.com/riscv/riscv-pk;