nqp: 2023.02 -> 2023.04

This commit is contained in:
superwhiskers 2023-05-05 19:45:56 -05:00
parent 1cb2ed212f
commit 047f5589fe
No known key found for this signature in database
GPG Key ID: 4531D312EB99740A

View File

@ -1,12 +1,15 @@
{ stdenv, fetchurl, perl, lib, moarvm }:
{ stdenv, fetchFromGitHub, perl, lib, moarvm }:
stdenv.mkDerivation rec {
pname = "nqp";
version = "2023.02";
version = "2023.04";
src = fetchurl {
url = "https://github.com/raku/nqp/releases/download/${version}/nqp-${version}.tar.gz";
hash = "sha256-417V7ZTsMqbXMO6BW/hcX8+IqGf6xlZjaMGtSf5jtT8=";
src = fetchFromGitHub {
owner = "raku";
repo = "nqp";
rev = version;
hash = "sha256-6V9d01aacDc+770XPSbQd4m1bg7Bbe47TTNOUxc2Fpw=";
fetchSubmodules = true;
};
buildInputs = [ perl ];