diff --git a/pkgs/development/interpreters/rakudo/default.nix b/pkgs/development/interpreters/rakudo/default.nix index ce69c2b8488d..3a6c9c7fbab9 100644 --- a/pkgs/development/interpreters/rakudo/default.nix +++ b/pkgs/development/interpreters/rakudo/default.nix @@ -12,14 +12,14 @@ stdenv.mkDerivation rec { pname = "rakudo"; - version = "2025.03"; + version = "2025.04"; # nixpkgs-update: no auto update src = fetchFromGitHub { owner = "rakudo"; repo = "rakudo"; rev = version; - hash = "sha256-7gqBjhPtD4gm3D3uNlzOFftETvgbdQn7TKlKaEke/hg="; + hash = "sha256-gVW1CB2LbgXV4uApmcl0/uxkcl9/PKk8sxj2R5dgowI="; fetchSubmodules = true; }; @@ -42,14 +42,15 @@ stdenv.mkDerivation rec { remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/share/perl6/runtime/dynext/libperl6_ops_moar${stdenv.hostPlatform.extensions.sharedLibrary})" ''; - meta = with lib; { + meta = { description = "Raku implementation on top of Moar virtual machine"; homepage = "https://rakudo.org"; - license = licenses.artistic2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.artistic2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice sgo + prince213 ]; }; } diff --git a/pkgs/development/interpreters/rakudo/moarvm.nix b/pkgs/development/interpreters/rakudo/moarvm.nix index b08a5e054915..4cc67ca70253 100644 --- a/pkgs/development/interpreters/rakudo/moarvm.nix +++ b/pkgs/development/interpreters/rakudo/moarvm.nix @@ -7,14 +7,14 @@ stdenv.mkDerivation rec { pname = "moarvm"; - version = "2025.03"; + version = "2025.04"; # nixpkgs-update: no auto update src = fetchFromGitHub { owner = "moarvm"; repo = "moarvm"; rev = version; - hash = "sha256-8uvO4GcediL0ysYWApEo6C583nw5QcrjN+0EmO2NKWo="; + hash = "sha256-g2L7pEFU/ECNRYcNORH66qYKIAO7Uqtk3pFxyvxgKT4="; fetchSubmodules = true; }; @@ -36,15 +36,16 @@ stdenv.mkDerivation rec { configureScript = "${perl}/bin/perl ./Configure.pl"; - meta = with lib; { + meta = { description = "VM with adaptive optimization and JIT compilation, built for Rakudo"; homepage = "https://moarvm.org"; - license = licenses.artistic2; - maintainers = with maintainers; [ + license = lib.licenses.artistic2; + maintainers = with lib.maintainers; [ thoughtpolice sgo + prince213 ]; mainProgram = "moar"; - platforms = platforms.unix; + platforms = lib.platforms.unix; }; } diff --git a/pkgs/development/interpreters/rakudo/nqp.nix b/pkgs/development/interpreters/rakudo/nqp.nix index e0ef64022138..fa532fc94a09 100644 --- a/pkgs/development/interpreters/rakudo/nqp.nix +++ b/pkgs/development/interpreters/rakudo/nqp.nix @@ -8,14 +8,14 @@ stdenv.mkDerivation rec { pname = "nqp"; - version = "2025.03"; + version = "2025.04"; # nixpkgs-update: no auto update src = fetchFromGitHub { owner = "raku"; repo = "nqp"; rev = version; - hash = "sha256-/+MfjR7J2fwwMu8oRaBqjKi1dI0+6WZENzpymXEYN/Q="; + hash = "sha256-X/xPtsGhGSV3QkD4pvuhJYueH9nksbmf+CLqORUdtJc="; fetchSubmodules = true; }; @@ -39,14 +39,15 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { - description = "Not Quite Perl -- a lightweight Raku-like environment for virtual machines"; + meta = { + description = "Lightweight Raku-like environment for virtual machines"; homepage = "https://github.com/Raku/nqp"; - license = licenses.artistic2; - platforms = platforms.unix; - maintainers = with maintainers; [ + license = lib.licenses.artistic2; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ thoughtpolice sgo + prince213 ]; }; }