gitextract_rca3ac9l/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ ├── doc.yaml │ └── flake-updates.yml ├── .gitignore ├── CVENOTES.org ├── LICENSE ├── README.md ├── app/ │ └── Main.hs ├── doc/ │ ├── batch-updates.md │ ├── contact.md │ ├── contributing.md │ ├── details.md │ ├── donate.md │ ├── installation.md │ ├── interactive-updates.md │ ├── introduction.md │ ├── nixpkgs-maintainer-faq.md │ ├── nixpkgs-update.md │ ├── nu.md │ ├── r-ryantm.md │ └── toc.md ├── flake.nix ├── nixpkgs-update.cabal ├── nixpkgs-update.nix ├── package.yaml ├── pkgs/ │ └── default.nix ├── rust/ │ ├── .envrc │ ├── .gitignore │ ├── Cargo.toml │ ├── diesel.toml │ ├── flake.nix │ ├── migrations/ │ │ └── 2023-08-12-152848_create_packages/ │ │ ├── down.sql │ │ └── up.sql │ └── src/ │ ├── github.rs │ ├── lib.rs │ ├── main.rs │ ├── models.rs │ ├── nix.rs │ ├── repology.rs │ └── schema.rs ├── src/ │ ├── CVE.hs │ ├── Check.hs │ ├── Data/ │ │ └── Hex.hs │ ├── DeleteMerged.hs │ ├── File.hs │ ├── GH.hs │ ├── Git.hs │ ├── NVD.hs │ ├── NVDRules.hs │ ├── Nix.hs │ ├── NixpkgsReview.hs │ ├── OurPrelude.hs │ ├── Outpaths.hs │ ├── Process.hs │ ├── Repology.hs │ ├── Rewrite.hs │ ├── Skiplist.hs │ ├── Update.hs │ ├── Utils.hs │ └── Version.hs ├── test/ │ ├── CheckSpec.hs │ ├── DoctestSpec.hs │ ├── Spec.hs │ ├── UpdateSpec.hs │ └── UtilsSpec.hs └── test_data/ ├── expected_pr_description_1.md ├── expected_pr_description_2.md ├── quoted_homepage_bad.nix └── quoted_homepage_good.nix