agate: 3.2.3 -> 3.2.4

+4 -13
+4 -13
pkgs/servers/gemini/agate/default.nix
··· 1 - { lib, stdenv, nixosTests, fetchFromGitHub, fetchpatch, rustPlatform, libiconv, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "agate"; 5 - version = "3.2.3"; 6 7 src = fetchFromGitHub { 8 owner = "mbrubeck"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-nkWk/0TIAHcYQjxbg0HnT+4S4Cinl22WfqHb9U6u5eI="; 12 }; 13 - cargoSha256 = "sha256-aF86QpizJ+lMNmN9DQKA9o1QZWZObyQ3v3+HmT/s02g="; 14 - 15 - patches = [ 16 - # https://github.com/mbrubeck/agate/pull/143 17 - (fetchpatch { 18 - name = "fix-port-collision.patch"; 19 - url = "https://github.com/mbrubeck/agate/commit/2f5d7878ec9d0dd51762c4c7680fc9f825d8ecd5.patch"; 20 - sha256 = "sha256-NEFmfb0y97O2W96YggD+MgcN7tlFEi9T4FNzLCND77s="; 21 - }) 22 - ]; 23 24 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 25
··· 1 + { lib, stdenv, nixosTests, fetchFromGitHub, rustPlatform, libiconv, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "agate"; 5 + version = "3.2.4"; 6 7 src = fetchFromGitHub { 8 owner = "mbrubeck"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-NyHs/9kRBGqmh44MSRzYb7CSvEB0RlmL9l5QpGEwDhY="; 12 }; 13 + cargoSha256 = "sha256-V0MLXOLLmKnk4Iyhbu+EomsxOX6RLYHIsi/IwWiqmcg="; 14 15 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 16