diff options
author | Soispha <soispha@vhack.eu> | 2024-01-30 15:22:56 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-30 15:22:56 +0100 |
commit | 0bf099bfb882ff5d474145f6043cf7cf00b4d604 (patch) | |
tree | 7dcdbf420be2573ce72b135dceb51e51700f7930 /sys/nixpkgs/pkgs | |
parent | chore(version): v1.26.2 (diff) | |
download | nixos-config-0bf099bfb882ff5d474145f6043cf7cf00b4d604.tar.gz nixos-config-0bf099bfb882ff5d474145f6043cf7cf00b4d604.zip |
fix(sys/nixpkgs/comments): Add missing fields to info_json parser
Diffstat (limited to 'sys/nixpkgs/pkgs')
-rw-r--r-- | sys/nixpkgs/pkgs/comments/src/info_json.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/comments/src/info_json.rs b/sys/nixpkgs/pkgs/comments/src/info_json.rs index 48a35777..35f24d8b 100644 --- a/sys/nixpkgs/pkgs/comments/src/info_json.rs +++ b/sys/nixpkgs/pkgs/comments/src/info_json.rs @@ -161,7 +161,8 @@ where pub struct Caption { pub ext: String, pub url: String, - pub name: String, + pub name: Option<String>, + pub protocol: Option<String>, } #[derive(Debug, Deserialize)] |