nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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

authored by

Lancelot SIX and committed by
tomberek
bc1069bc cac752ac

+7 -8
+7 -8
pkgs/misc/riscv-pk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, payload ? null }: let 2 - rev = "e5846a2bc707eaa58dc8ab6a8d20a090c6ee8570"; 3 - sha256 = "1clynpp70fnbgsjgxx7xi0vrdrj1v0h8zpv0x26i324kp2gwylf4"; 4 - revCount = "438"; 5 - shortRev = "e5846a2"; 6 - in stdenv.mkDerivation { 7 - name = "riscv-pk-0.1pre${revCount}_${shortRev}"; 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, payload ? null }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "riscv-pk"; 5 + version = "1.0.0"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "riscv"; 11 9 repo = "riscv-pk"; 12 - inherit rev sha256; 10 + rev = "v${version}"; 11 + sha256 = "1cc0rz4q3a1zw8756b8yysw8lb5g4xbjajh5lvqbjix41hbdx6xz"; 13 12 }; 14 13 15 14 nativeBuildInputs = [ autoreconfHook ];