pg_featureserv: 1.2.0 -> 1.3.0 unmark broken

+3 -4
+3 -4
pkgs/servers/geospatial/pg_featureserv/default.nix
··· 2 3 buildGoModule rec { 4 pname = "pg_featureserv"; 5 - version = "1.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "CrunchyData"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "0lfsbsgcb7z8ljxn1by37rbx02vaprrpacybk1kja1rjli7ik7m9"; 12 }; 13 14 - vendorSha256 = null; #vendorSha256 = ""; 15 16 ldflags = [ "-s" "-w" "-X github.com/CrunchyData/pg_featureserv/conf.setVersion=${version}" ]; 17 ··· 20 homepage = "https://github.com/CrunchyData/pg_featureserv"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ sikmir ]; 23 - broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.go-modules --check 24 }; 25 }
··· 2 3 buildGoModule rec { 4 pname = "pg_featureserv"; 5 + version = "1.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "CrunchyData"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-Kii9Qbff6dIAaHx3QfNPTg8g+QrBpZghGlHxrsGaMbo="; 12 }; 13 14 + vendorHash = "sha256-BHiEVyi3FXPovYy3iDP8q+y+LgfI4ElDPVZexd7nnuo="; 15 16 ldflags = [ "-s" "-w" "-X github.com/CrunchyData/pg_featureserv/conf.setVersion=${version}" ]; 17 ··· 20 homepage = "https://github.com/CrunchyData/pg_featureserv"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ sikmir ]; 23 }; 24 }