Merge pull request #248685 from sikmir/agate

agate: 3.3.0 → 3.3.1
This commit is contained in:
Nick Cao
2023-08-15 17:55:05 -06:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
geminiserver.wait_for_open_port(1965)
with subtest("check is serving over gemini"):
response = geminiserver.succeed("${pkgs.gmni}/bin/gmni -j once -i -N gemini://localhost:1965")
response = geminiserver.succeed("${pkgs.gemget}/bin/gemget --header -o - gemini://localhost:1965")
print(response)
assert "Hello NixOS!" in response
'';
+3 -3
View File
@@ -2,15 +2,15 @@
rustPlatform.buildRustPackage rec {
pname = "agate";
version = "3.3.0";
version = "3.3.1";
src = fetchFromGitHub {
owner = "mbrubeck";
repo = "agate";
rev = "v${version}";
hash = "sha256-B0hbXar/RulfBJUR1Jtczf3p1H6Zj5OVCXVCaj5zf/U=";
hash = "sha256-gU4Q45Sb+LOmcv0j9R8yw996NUpCOnxdwT6lyvNp2pg=";
};
cargoHash = "sha256-6Z+mcQAJwW7tm4SBbrHwHIwiqlFV+PIa5I2onU2rPts=";
cargoHash = "sha256-6jF4ayzBN4sSk81u3iX0CxMPAsL6D+wpXRYGjgntMUE=";
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];