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

Commits on Apr 1, 2019

  1. sbcl: 1.5.0 -> 1.5.1

    Tomas Hlavaty committed Apr 1, 2019
    Copy the full SHA
    68b6302 View commit details

Commits on Apr 14, 2019

  1. Copy the full SHA
    051c9cc View commit details

Commits on Apr 28, 2019

  1. Merge pull request #58675 from tohl/sbcl

    sbcl: 1.5.0 -> 1.5.1, tested on nixos x86_64
    7c6f434c authored Apr 28, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3cf719f View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/compilers/sbcl/bootstrap.nix
  2. +2 −2 pkgs/development/compilers/sbcl/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/sbcl/bootstrap.nix
Original file line number Diff line number Diff line change
@@ -3,9 +3,9 @@
let
options = rec {
x86_64-darwin = rec {
version = "1.1.8";
version = "1.2.11";
system = "x86-64-darwin";
sha256 = "006pr88053wclvbjfjdypnbiw8wymbzdzi7a6kbkpdfn4zf5943j";
sha256 = "0lh4gpvi8hl6g6b9321g5pwh8sk3218i7h4lx7p3vd9z0cf3lz85";
};
x86_64-linux = rec {
version = "1.3.16";
4 changes: 2 additions & 2 deletions pkgs/development/compilers/sbcl/default.nix
Original file line number Diff line number Diff line change
@@ -10,11 +10,11 @@

stdenv.mkDerivation rec {
name = "sbcl-${version}";
version = "1.5.0";
version = "1.5.1";

src = fetchurl {
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
sha256 = "1a4c84b6qqi4w4l1zzhnhnywk73j3wb0gjgghzcw0h5syqbqzy8z";
sha256 = "08z62qba0kmm15k93s2rq7ipi769895g8iwigcp20qjh6amwnwph";
};

buildInputs = [texinfo];