Init starfive visionfive 2

This commit is contained in:
Jakob Leifhelm
2023-04-16 22:43:32 +02:00
parent 3006d2860a
commit 0cc1214203
11 changed files with 270 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec{
pname = "spi_tool";
version = "0x01010101";
src = fetchFromGitHub {
owner = "starfive-tech";
repo = "soft_3rdpart";
rev = "cd7b50cd9f9eca66c23ebd19f06a172ce0be591f";
sha256 = "sha256-hRmP74gz0Y9KnSwXCjxEiArJE+FonI9rGghZTK54qGs=";
sparseCheckout = [ "spl_tool" ];
};
sourceRoot = "source/spl_tool";
installPhase = ''
mkdir -p $out/bin
cp spl_tool $out/bin
'';
}