tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
agate: 3.2.3 -> 3.2.4
06kellyjac
3 years ago
ce7ebe6c
a7bd2d19
+4
-13
1 changed file
expand all
collapse all
unified
split
pkgs
servers
gemini
agate
default.nix
+4
-13
pkgs/servers/gemini/agate/default.nix
···
1
1
-
{ lib, stdenv, nixosTests, fetchFromGitHub, fetchpatch, rustPlatform, libiconv, Security }:
1
1
+
{ lib, stdenv, nixosTests, fetchFromGitHub, rustPlatform, libiconv, Security }:
2
2
3
3
rustPlatform.buildRustPackage rec {
4
4
pname = "agate";
5
5
-
version = "3.2.3";
5
5
+
version = "3.2.4";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "mbrubeck";
9
9
repo = pname;
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-nkWk/0TIAHcYQjxbg0HnT+4S4Cinl22WfqHb9U6u5eI=";
11
11
+
sha256 = "sha256-NyHs/9kRBGqmh44MSRzYb7CSvEB0RlmL9l5QpGEwDhY=";
12
12
};
13
13
-
cargoSha256 = "sha256-aF86QpizJ+lMNmN9DQKA9o1QZWZObyQ3v3+HmT/s02g=";
14
14
-
15
15
-
patches = [
16
16
-
# https://github.com/mbrubeck/agate/pull/143
17
17
-
(fetchpatch {
18
18
-
name = "fix-port-collision.patch";
19
19
-
url = "https://github.com/mbrubeck/agate/commit/2f5d7878ec9d0dd51762c4c7680fc9f825d8ecd5.patch";
20
20
-
sha256 = "sha256-NEFmfb0y97O2W96YggD+MgcN7tlFEi9T4FNzLCND77s=";
21
21
-
})
22
22
-
];
13
13
+
cargoSha256 = "sha256-V0MLXOLLmKnk4Iyhbu+EomsxOX6RLYHIsi/IwWiqmcg=";
23
14
24
15
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
25
16