lol

Merge pull request #270936 from marsam/update-pgrouting

postgresqlPackages.pgrouting: 3.6.0 -> 3.6.1

authored by

Nikolay Korotkiy and committed by
GitHub
518c3547 93fdb61b

+3 -11
+3 -11
pkgs/servers/sql/postgresql/ext/pgrouting.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, postgresql, perl, cmake, boost }: 1 + { lib, stdenv, fetchFromGitHub, postgresql, perl, cmake, boost }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgrouting"; 5 - version = "3.6.0"; 5 + version = "3.6.1"; 6 6 7 7 nativeBuildInputs = [ cmake perl ]; 8 8 buildInputs = [ postgresql boost ]; ··· 11 11 owner = "pgRouting"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-FOHIQzL8tmSWllCTzQkuGOiqk47S+HTB8aEpAC30YNk="; 14 + hash = "sha256-DyrBVGBLUkg0ODuHV3mCkyod2/hEtpZfLSvnrEQObaI="; 15 15 }; 16 - 17 - patches = [ 18 - # Fix issues with size_t vs uint64_ on Darwin. Remove with the next release. 19 - (fetchpatch { 20 - url = "https://github.com/pgRouting/pgrouting/commit/b16e9da748e9d78c8b19d2b1db3baeb19c33c6aa.patch"; 21 - hash = "sha256-CJmuVxZ3zIJTa6KXhM2cvynAE6Vmff7XBDfSGg4W9dE="; 22 - }) 23 - ]; 24 16 25 17 installPhase = '' 26 18 install -D lib/*.so -t $out/lib