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

Commits on Aug 4, 2019

  1. smlnjBootstrap: 110.84 -> 110.91

    Vaibhav Sagar authored and vaibhavsagar committed Aug 4, 2019
    Copy the full SHA
    a489bcb View commit details
  2. Merge pull request #57916 from vaibhavsagar/bump-smlnjBootstrap

    smlnjBootstrap: 110.84 -> 110.91
    aanderse authored Aug 4, 2019
    Copy the full SHA
    4b5b41a View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/compilers/smlnj/bootstrap.nix
8 changes: 4 additions & 4 deletions pkgs/development/compilers/smlnj/bootstrap.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ stdenv, fetchurl, cpio, rsync, makeWrapper }:
{ stdenv, fetchurl, cpio, rsync, xar, makeWrapper }:

stdenv.mkDerivation rec {
name = "smlnj-bootstrap-${version}";

version = "110.84";
version = "110.91";

src = fetchurl {
url = "http://smlnj.cs.uchicago.edu/dist/working/${version}/smlnj-x86-${version}.pkg";
sha256 = "17fpnlxcfwx2ysg6y9c5wwx6s3jca981nb0pawfcg6xg9wcapyfz";
sha256 = "12jn50h5jz0ac1vzld2mb94p1dyc8h0mk0hip2wj5xqk1dbzwxl4";
};

buildInputs = [ cpio rsync makeWrapper ];

unpackPhase = ''
/usr/bin/xar -xf $src
${xar}/bin/xar -xf $src
cd smlnj.pkg
'';