about summary refs log tree commit diff
path: root/third_party/nix-snapshotter
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix-snapshotter')
-rw-r--r--third_party/nix-snapshotter/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/nix-snapshotter/default.nix b/third_party/nix-snapshotter/default.nix
new file mode 100644
index 0000000000..58b30af25b
--- /dev/null
+++ b/third_party/nix-snapshotter/default.nix
@@ -0,0 +1,13 @@
+# Imports the stable Nix build definitions for nix-snapshotter, a
+# plugin to bring native support for Nix images to containerd
+{ lib, pkgs, ... }:
+
+let
+  src = pkgs.fetchFromGitHub {
+    owner = "pdtpartners";
+    repo = "nix-snapshotter";
+    sha256 = "11sfy3kf046p8kacp7yh8ijjpp6php6q8wxlbya1v5q53h3980v1";
+    rev = "6eb21bd3429535646da4aa396bb0c1f81a9b72c6";
+  };
+in
+pkgs.callPackage "${src}/package.nix" { }