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: 96052f350230
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3bcb8abab883
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 9, 2020

  1. moodle: 3.9.1 -> 3.9.3

    freezeboy committed Nov 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3f677c5 View commit details

Commits on Nov 10, 2020

  1. Merge pull request #103191 from freezeboy/update-stable-moodle

    [20.09] moodle: 3.9.1 -> 3.9.3
    aanderse authored Nov 10, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3bcb8ab View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/web-apps/moodle/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/web-apps/moodle/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, writeText, plugins ? [ ] }:

let
version = "3.9.1";
version = "3.9.3";
stableVersion = builtins.substring 0 2 (builtins.replaceStrings ["."] [""] version);

in stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url =
"https://download.moodle.org/stable${stableVersion}/${pname}-${version}.tgz";
sha256 = "sha256-6QJDEInUQQSNj3kThQ65o2cT6JaRy0FrEKy+EcDMVvs=";
sha256 = "sha256-w3y2DVQWXFAsFF7Zx0Zij5piRj9BCwRk4ntPSMFJQp8=";
};

phpConfig = writeText "config.php" ''