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

Commits on Feb 14, 2020

  1. Copy the full SHA
    dd95c81 View commit details

Commits on Feb 16, 2020

  1. Merge pull request #80115 from marsam/update-racket

    racket: 7.5 -> 7.6
    marsam authored Feb 16, 2020
    Copy the full SHA
    d539707 View commit details
Showing with 3 additions and 3 deletions.
  1. +2 −2 pkgs/development/interpreters/racket/default.nix
  2. +1 −1 pkgs/development/interpreters/racket/minimal.nix
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/racket/default.nix
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ in

stdenv.mkDerivation rec {
pname = "racket";
version = "7.5"; # always change at once with ./minimal.nix
version = "7.6"; # always change at once with ./minimal.nix

src = (stdenv.lib.makeOverridable ({ name, sha256 }:
fetchurl {
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
}
)) {
name = "${pname}-${version}";
sha256 = "0b74v0pqkx57x2gk0m4sp94jaf6bi1mci4ix9vx4sh2442sbds1j";
sha256 = "0yagy7qrnz96gwafnj3whh2vs54788k1ci3vkm100h68gsw638b8";
};

FONTCONFIG_FILE = fontsConf;
2 changes: 1 addition & 1 deletion pkgs/development/interpreters/racket/minimal.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ racket.overrideAttrs (oldAttrs: rec {
name = "racket-minimal-${oldAttrs.version}";
src = oldAttrs.src.override {
inherit name;
sha256 = "0478f0phkjch10ncsl8lm8a1m8qvgchrkgzpcaxyhmg2clyjgn8r";
sha256 = "0id094q9024hj2n3907l7dblp3iix1v5289xzskmh5c26xfygp9y";
};

meta = oldAttrs.meta // {