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

Commits on Apr 6, 2020

  1. petsc: 3.12.4 -> 3.13.0

    r-ryantm committed Apr 6, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Mic92 Jörg Thalheim
    Copy the full SHA
    758e816 View commit details
  2. petsc: fix build on darwin

    marsam committed Apr 6, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Mic92 Jörg Thalheim
    Copy the full SHA
    ad15e4e View commit details

Commits on Apr 9, 2020

  1. Merge pull request #84455 from r-ryantm/auto-update/petsc

    petsc: 3.12.4 -> 3.13.0
    marsam authored Apr 9, 2020
    Copy the full SHA
    2f41064 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/science/math/petsc/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/science/math/petsc/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "petsc";
version = "3.12.4";
version = "3.13.0";

src = fetchurl {
url = "http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-${version}.tar.gz";
sha256 = "1hw4f12v2xwrs37gjh83dbixhg0yxandqx7s7k5vlfx91l9l3aan";
sha256 = "0943bydmsq3sjwj3rxhb8hx58b1fm8vymny731557fs10g5zfbyz";
};

nativeBuildInputs = [ blas gfortran.cc.lib liblapack python ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
configureFlagsArray=(
$configureFlagsArray
"--CC=$CC"
"--with-cxx=g++"
"--with-cxx=$CXX"
"--with-fc=0"
"--with-mpi=0"
"--with-blas-lib=[${blas}/lib/libblas.a,${gfortran.cc.lib}/lib/libgfortran.a]"