tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
sozu: 0.15.3 -> 0.15.4
Gaël Reyrol
2 years ago
af420b01
bbf85a3f
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
servers
sozu
default.nix
+4
-3
pkgs/servers/sozu/default.nix
···
11
12
rustPlatform.buildRustPackage rec {
13
pname = "sozu";
14
-
version = "0.15.3";
15
16
src = fetchFromGitHub {
17
owner = "sozu-proxy";
18
repo = pname;
19
rev = version;
20
-
hash = "sha256-hZQ5pRzQy+BMGnxCl0Mw3hqCHZJcZ30vhqt6gWyLXWU=";
21
};
22
23
-
cargoHash = "sha256-KFOsKyZZOWvkkTuLqVeLmHlk6HscEJi0sI2hJS6UnOU=";
24
25
nativeBuildInputs = [ protobuf ];
26
···
45
changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}";
46
license = licenses.agpl3;
47
maintainers = with maintainers; [ Br1ght0ne gaelreyrol ];
0
48
# error[E0432]: unresolved import `std::arch::x86_64`
49
broken = !stdenv.isx86_64;
50
};
···
11
12
rustPlatform.buildRustPackage rec {
13
pname = "sozu";
14
+
version = "0.15.4";
15
16
src = fetchFromGitHub {
17
owner = "sozu-proxy";
18
repo = pname;
19
rev = version;
20
+
hash = "sha256-kyD4MXk6MajAJb0k7jDquPFodq7NLPsaZbGHcZMojC4=";
21
};
22
23
+
cargoHash = "sha256-qfuTkf31b5rHdYbTraFDw1FtZ0jGdQaM2V3idVHk/u4=";
24
25
nativeBuildInputs = [ protobuf ];
26
···
45
changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}";
46
license = licenses.agpl3;
47
maintainers = with maintainers; [ Br1ght0ne gaelreyrol ];
48
+
mainProgram = "sozu";
49
# error[E0432]: unresolved import `std::arch::x86_64`
50
broken = !stdenv.isx86_64;
51
};