Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b5b11e9da435
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bb3f7d14a17e
Choose a head ref
  • 4 commits
  • 2 files changed
  • 3 contributors

Commits on Aug 8, 2018

  1. nwjs: 0.23.6 -> 0.32.1

    yrashk committed Aug 8, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    yrashk Yurii Rashkovskii
    Copy the full SHA
    4f9fafd View commit details
  2. sundials: 3.1.1 -> 3.1.2

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sundials/versions.
    R. RyanTM committed Aug 8, 2018
    Copy the full SHA
    d9efc80 View commit details

Commits on Aug 12, 2018

  1. Merge pull request #44676 from yrashk/nwjs-0.32.1

    nwjs: 0.23.6 -> 0.32.1
    samueldr authored Aug 12, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a3722a6 View commit details
  2. Merge pull request #44679 from r-ryantm/auto-update/sundials

    sundials: 3.1.1 -> 3.1.2
    samueldr authored Aug 12, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bb3f7d1 View commit details
Showing with 5 additions and 5 deletions.
  1. +2 −2 pkgs/development/libraries/sundials/default.nix
  2. +3 −3 pkgs/development/tools/nwjs/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/sundials/default.nix
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@
stdenv.mkDerivation rec {

pname = "sundials";
version = "3.1.1";
version = "3.1.2";
name = "${pname}-${version}";

src = fetchurl {
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
sha256 = "090s8ymhd0g1s1d44fa73r5yi32hb4biwahhbfi327zd64yn8kd2";
sha256 = "05p19y3vv0vi3nggrvy6ymqkvhab2dxncl044qj0xnaix2qmp658";
};

preConfigure = ''
6 changes: 3 additions & 3 deletions pkgs/development/tools/nwjs/default.nix
Original file line number Diff line number Diff line change
@@ -30,13 +30,13 @@ let

in stdenv.mkDerivation rec {
name = "nwjs-${version}";
version = "0.23.6";
version = "0.32.1";

src = fetchurl {
url = "https://dl.nwjs.io/v${version}/nwjs-v${version}-linux-${bits}.tar.gz";
sha256 = if bits == "x64" then
"0ppyjspdvacarhdn4xd5i1pqgmf4z1bxnh1cry780489h25rcjgj" else
"0c0j73vnzhsry5rdx41d954a29jmjnvzli728cfbjybfr51zdybg";
"b96fc5af62adf0567cc376c6b90cc401c9216bb01eb4767189208a29fbae5e5b" else
"0a3b712abfa0c3e7e808b1d08ea5d53375a71060e7d144fdcb58c4fe88fa2250";
};

phases = [ "unpackPhase" "installPhase" ];