riscv-pk: riscv-pk-0.1pre438_e5846a2 -> 1.0.0

This commit is contained in:
Lancelot SIX 2021-03-12 00:07:28 +00:00 committed by tomberek
parent cac752acb2
commit bc1069bcbd

View file

@ -1,15 +1,14 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, payload ? null }: let { lib, stdenv, fetchFromGitHub, autoreconfHook, payload ? null }:
rev = "e5846a2bc707eaa58dc8ab6a8d20a090c6ee8570";
sha256 = "1clynpp70fnbgsjgxx7xi0vrdrj1v0h8zpv0x26i324kp2gwylf4"; stdenv.mkDerivation rec {
revCount = "438"; pname = "riscv-pk";
shortRev = "e5846a2"; version = "1.0.0";
in stdenv.mkDerivation {
name = "riscv-pk-0.1pre${revCount}_${shortRev}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "riscv"; owner = "riscv";
repo = "riscv-pk"; repo = "riscv-pk";
inherit rev sha256; rev = "v${version}";
sha256 = "1cc0rz4q3a1zw8756b8yysw8lb5g4xbjajh5lvqbjix41hbdx6xz";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];