riscv-pk: Set platforms properly

This commit is contained in:
Shea Levy 2018-03-24 08:44:26 -04:00
parent 1b27260a0b
commit 20f51922c0
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ in rec {
i686 = [ patterns.isi686 ];
x86_64 = [ patterns.isx86_64 ];
mips = [ patterns.isMips ];
riscv = [ patterns.isRiscV ];
cygwin = [ patterns.isCygwin ];
darwin = [ patterns.isDarwin ];

View File

@ -36,7 +36,7 @@ in stdenv.mkDerivation {
description = "RISC-V Proxy Kernel and Bootloader.";
homepage = https://github.com/riscv/riscv-pk;
license = stdenv.lib.licenses.bsd3;
platforms = [ "riscv-linux" ];
platforms = stdenv.lib.platforms.riscv;
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}