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

Commits on Mar 4, 2019

  1. shapelib: 1.4.1 -> 1.5.0

    https://lists.osgeo.org/pipermail/shapelib/2019-February/000647.html
    
    * s in 1.5.0 notes, no longer need 'proj' dep (so drop)
    dtzWill committed Mar 4, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    bafff55 View commit details

Commits on Mar 7, 2019

  1. Merge pull request #56803 from dtzWill/update/shapelib-1.5.0

    shapelib: 1.4.1 -> 1.5.0
    dtzWill authored Mar 7, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    c42b570 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/development/libraries/shapelib/default.nix
8 changes: 3 additions & 5 deletions pkgs/development/libraries/shapelib/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{ stdenv, fetchurl, proj }:
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "shapelib-1.4.1";
name = "shapelib-1.5.0";

src = fetchurl {
url = "https://download.osgeo.org/shapelib/${name}.tar.gz";
sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
sha256 = "1qfsgb8b3yiqwvr6h9m81g6k9fjhfys70c22p7kzkbick20a9h0z";
};

buildInputs = [ proj ];

meta = with stdenv.lib; {
description = "C Library for reading, writing and updating ESRI Shapefiles";
homepage = http://shapelib.maptools.org/;