about summary refs log tree commit diff
path: root/third_party/rustsec-advisory-db/default.nix
blob: e0ea2b080a667a1d2ea662191f36bce1d093b078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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;
  };
}