about summary refs log blame commit diff
path: root/third_party/rustsec-advisory-db/default.nix
blob: e0ea2b080a667a1d2ea662191f36bce1d093b078 (plain) (tree)
1
2
3
4
5
6
7
8
                                  
                     
 
   
                                                          

  
                      


                               
          
       
     
 
              
                                      
    
 
# 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;
  };
}