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: 3b30e615391b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 081408041a3b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 5, 2019

  1. spidermonkey_60: 60.4.0 -> 60.7.0

    dtzWill authored and abbradar committed Jun 5, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0814080 View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/development/interpreters/spidermonkey/60.nix
9 changes: 4 additions & 5 deletions pkgs/development/interpreters/spidermonkey/60.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{ stdenv, fetchurl, fetchpatch, autoconf213, pkgconfig, perl, python2, zip
, which, readline, zlib, icu }:

let
version = "60.4.0";
in stdenv.mkDerivation rec {
name = "spidermonkey-${version}";
stdenv.mkDerivation rec {
pname = "spidermonkey";
version = "60.7.0";

src = fetchurl {
url = "mirror://mozilla/firefox/releases/${version}esr/source/firefox-${version}esr.source.tar.xz";
sha256 = "11gzxd82grc3kg1ha4yni6ag6b97n46qycvv6x15s91ziia5hli0";
sha256 = "08x0nijh0ja5jza95a8y030ibk756bn7zlw3a3c4750yilfhqpqa";
};

buildInputs = [ readline zlib icu ];