about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--third_party/rustsec-advisory-db/default.nix9
-rw-r--r--tools/rust-crates-advisory/default.nix8
2 files changed, 10 insertions, 7 deletions
diff --git a/third_party/rustsec-advisory-db/default.nix b/third_party/rustsec-advisory-db/default.nix
new file mode 100644
index 0000000000..2e280345ab
--- /dev/null
+++ b/third_party/rustsec-advisory-db/default.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }:
+
+pkgs.fetchFromGitHub {
+  owner = "RustSec";
+  repo = "advisory-db";
+  # TODO(Profpatsch): this will have to be updated regularly, how?
+  rev = "113188c62380753f01ff0df5edb7d67a300b143a";
+  sha256 = "0v086ybwr71zgs5nv8yr4w2w2d4daxx6in2s1sjb4m41q1r9p0wj";
+}
diff --git a/tools/rust-crates-advisory/default.nix b/tools/rust-crates-advisory/default.nix
index 1a26a523b2..9490e3f474 100644
--- a/tools/rust-crates-advisory/default.nix
+++ b/tools/rust-crates-advisory/default.nix
@@ -7,13 +7,7 @@ let
     // depot.nix.getBins pkgs.lr [ "lr" ]
     ;
 
-  crate-advisories = "${pkgs.fetchFromGitHub {
-    owner = "RustSec";
-    repo = "advisory-db";
-    # TODO(Profpatsch): this will have to be updated regularly, how?
-    rev = "113188c62380753f01ff0df5edb7d67a300b143a";
-    sha256 = "0v086ybwr71zgs5nv8yr4w2w2d4daxx6in2s1sjb4m41q1r9p0wj";
-  }}/crates";
+  crate-advisories = "${depot.third_party.rustsec-advisory-db}/crates";
 
   our-crates = lib.filter (v: v ? outPath)
     (builtins.attrValues depot.third_party.rust-crates);