tvl-depot/third_party/rustsec-advisory-db/default.nix

20 lines
286 B
Nix
Raw Normal View History

# RustSec's advisory db for crates
{ pkgs, depot, ... }:
let
inherit (depot.third_party.sources) rustsec-advisory-db;
in
pkgs.fetchFromGitHub {
inherit (rustsec-advisory-db)
owner
repo
sha256
rev
;
passthru = {
inherit (rustsec-advisory-db) rev;
};
}