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

Commits on Apr 7, 2018

  1. geos: 3.6.1 -> 3.6.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/geos/versions.
    
    These checks were done:
    
    - built on NixOS
    - ran ‘/nix/store/17821mvnx0ilvicbzxvli6jq58fg7yy6-geos-3.6.2/bin/geos-config --version’ and found version 3.6.2
    - found 3.6.2 with grep in /nix/store/17821mvnx0ilvicbzxvli6jq58fg7yy6-geos-3.6.2
    - directory tree listing: https://gist.github.com/bf03d4beea8e52684689747456f95948
    R. RyanTM committed Apr 7, 2018
    Copy the full SHA
    a2c1a90 View commit details

Commits on Apr 19, 2018

  1. Merge pull request #38565 from r-ryantm/auto-update/geos

    geos: 3.6.1 -> 3.6.2
    matthewbauer authored Apr 19, 2018
    Copy the full SHA
    25ca23b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/geos/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/geos/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, fetchpatch, python }:

stdenv.mkDerivation rec {
name = "geos-3.6.1";
name = "geos-3.6.2";

src = fetchurl {
url = "http://download.osgeo.org/geos/${name}.tar.bz2";
sha256 = "1icz31kd5sml2kdxhjznvmv33zfr6nig9l0i6bdcz9q9g8x4wbja";
sha256 = "0ak5szby29l9l0vy43dm5z2g92xzdky20q1gc1kah1fnhkgi6nh4";
};

enableParallelBuilding = true;