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

Commits on Feb 28, 2019

  1. cytoscape: bump 3.6.1 -> 3.7.1

    Needed to update URL, because `wget "http://chianti.ucsd.edu/cytoscape-3.7.1/cytoscape-3.7.1.tar.gz"` returns `404`.
    ariutta authored Feb 28, 2019
    Copy the full SHA
    c792fd1 View commit details

Commits on Mar 11, 2019

  1. Merge pull request #56498 from ariutta/patch-1

    cytoscape: bump 3.6.1 -> 3.7.1
    peterhoeg authored Mar 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    136126c View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/science/misc/cytoscape/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/science/misc/cytoscape/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "cytoscape-${version}";
version = "3.6.1";
version = "3.7.1";

src = fetchurl {
url = "http://chianti.ucsd.edu/${name}/${name}.tar.gz";
sha256 = "1pkdilv1nw6vvdxk71bwjngr8yafrsqwaqvlakhp8yb342r1jd4s";
url = "https://github.com/cytoscape/cytoscape/releases/download/${version}/${name}.tar.gz";
sha256 = "1mhsngbwbgdwl70wj7850zg94534lasihwv2ryifardm35mkh48k";
};

buildInputs = [jre makeWrapper];