Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 52271f44b176
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 13b0a81056d1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 23, 2020

  1. moarvm: 2020.10 -> 2020.11

    stigtsp committed Nov 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vdemeester Vincent Demeester
    Copy the full SHA
    d9dafe3 View commit details
  2. nqp: 2020.10 -> 2020.11

    stigtsp committed Nov 23, 2020
    Copy the full SHA
    e4977d4 View commit details
  3. rakudo: 2020.10 -> 2020.11

    stigtsp committed Nov 23, 2020
    Copy the full SHA
    f8e6583 View commit details

Commits on Nov 24, 2020

  1. Merge pull request #104644 from stigtsp/package/rakudo-2020.11

    rakudo: 2020.10 -> 2020.11
    stigtsp authored Nov 24, 2020
    Copy the full SHA
    13b0a81 View commit details
Showing with 6 additions and 6 deletions.
  1. +2 −2 pkgs/development/interpreters/rakudo/default.nix
  2. +2 −2 pkgs/development/interpreters/rakudo/moarvm.nix
  3. +2 −2 pkgs/development/interpreters/rakudo/nqp.nix
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/rakudo/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "rakudo";
version = "2020.10";
version = "2020.11";

src = fetchurl {
url = "https://www.rakudo.org/dl/rakudo/rakudo-${version}.tar.gz";
sha256 = "0wvsinmpz8icd0409f8rg93mqdb5ml76m0vb4r26ngz237ph69dn";
sha256 = "107sskgf0p6npm3vjpv5wrqgfa007af6bxxiv1wgiyzx7maqdw5n";
};

buildInputs = [ icu zlib gmp perl ];
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/rakudo/moarvm.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

stdenv.mkDerivation rec {
pname = "moarvm";
version = "2020.10";
version = "2020.11";

src = fetchurl {
url = "https://www.moarvm.org/releases/MoarVM-${version}.tar.gz";
sha256 = "1i7jjjwv4av3rsfgbqb213fhb9ns25jfm19nzn7kki0n7w486y33";
sha256 = "1163zv1fglgwbk6pppzbjwcgzpp13ilg5cz7fawsfnzdnrrq40kd";
};

buildInputs = [ perl ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ApplicationServices ];
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/rakudo/nqp.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "nqp";
version = "2020.10";
version = "2020.11";

src = fetchurl {
url = "https://github.com/raku/nqp/releases/download/${version}/nqp-${version}.tar.gz";
sha256 = "0nb0vdycz2wrd5yspvps2wy7a21066csr18v786085qim347830h";
sha256 = "03whmlc6bmwmwrddwd5vqmir0gzwnmf0apvl2q1na09qqj3zb1br";
};

buildInputs = [ perl ];