tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pg_featureserv: 1.2.0 -> 1.3.0 unmark broken
Kirill Radzikhovskyy
2 years ago
4e68587c
e74e6844
+3
-4
1 changed file
expand all
collapse all
unified
split
pkgs
servers
geospatial
pg_featureserv
default.nix
+3
-4
pkgs/servers/geospatial/pg_featureserv/default.nix
···
2
2
3
3
buildGoModule rec {
4
4
pname = "pg_featureserv";
5
5
-
version = "1.2.0";
5
5
+
version = "1.3.0";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "CrunchyData";
9
9
repo = pname;
10
10
rev = "v${version}";
11
11
-
sha256 = "0lfsbsgcb7z8ljxn1by37rbx02vaprrpacybk1kja1rjli7ik7m9";
11
11
+
sha256 = "sha256-Kii9Qbff6dIAaHx3QfNPTg8g+QrBpZghGlHxrsGaMbo=";
12
12
};
13
13
14
14
-
vendorSha256 = null; #vendorSha256 = "";
14
14
+
vendorHash = "sha256-BHiEVyi3FXPovYy3iDP8q+y+LgfI4ElDPVZexd7nnuo=";
15
15
16
16
ldflags = [ "-s" "-w" "-X github.com/CrunchyData/pg_featureserv/conf.setVersion=${version}" ];
17
17
···
20
20
homepage = "https://github.com/CrunchyData/pg_featureserv";
21
21
license = licenses.asl20;
22
22
maintainers = with maintainers; [ sikmir ];
23
23
-
broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.go-modules --check
24
23
};
25
24
}