about summary refs log tree commit diff
path: root/pkgs/servers/geospatial
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-07-15 20:13:14 -0600
committerGitHub <noreply@github.com>2023-07-15 20:13:14 -0600
commit7ab5f9981a9779a5c1612248fa56ba2ffa7440d1 (patch)
tree074d73a9f8967455b8e77b123d8c0167e85e535f /pkgs/servers/geospatial
parentafd6b815c41aaa75767ae328b57059144169ffa9 (diff)
parent4e68587cdabc75b411ce6e6ada9591f16bf4de20 (diff)
Merge pull request #243590 from kirillrdy/pg_featureserv
pg_featureserv: 1.2.0 -> 1.3.0 unmark broken
Diffstat (limited to 'pkgs/servers/geospatial')
-rw-r--r--pkgs/servers/geospatial/pg_featureserv/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/servers/geospatial/pg_featureserv/default.nix b/pkgs/servers/geospatial/pg_featureserv/default.nix
index 5da5d16e90d9e..da1cdf10939d5 100644
--- a/pkgs/servers/geospatial/pg_featureserv/default.nix
+++ b/pkgs/servers/geospatial/pg_featureserv/default.nix
@@ -2,16 +2,16 @@
 
 buildGoModule rec {
   pname = "pg_featureserv";
-  version = "1.2.0";
+  version = "1.3.0";
 
   src = fetchFromGitHub {
     owner = "CrunchyData";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0lfsbsgcb7z8ljxn1by37rbx02vaprrpacybk1kja1rjli7ik7m9";
+    sha256 = "sha256-Kii9Qbff6dIAaHx3QfNPTg8g+QrBpZghGlHxrsGaMbo=";
   };
 
-  vendorSha256 = null; #vendorSha256 = "";
+  vendorHash = "sha256-BHiEVyi3FXPovYy3iDP8q+y+LgfI4ElDPVZexd7nnuo=";
 
   ldflags = [ "-s" "-w" "-X github.com/CrunchyData/pg_featureserv/conf.setVersion=${version}" ];
 
@@ -20,6 +20,5 @@ buildGoModule rec {
     homepage = "https://github.com/CrunchyData/pg_featureserv";
     license = licenses.asl20;
     maintainers = with maintainers; [ sikmir ];
-    broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.go-modules --check
   };
 }