about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-03-31T17·38+0200
committerclbot <clbot@tvl.fyi>2024-03-31T19·04+0000
commite0871efeaf9db8b918f549303d4dbb8e83b163d7 (patch)
treebcf411f6bc99b35e53acf0e7018c1288747f7c31 /third_party
parentade5567875dc6ad3dc09ac79a56c48a8ce892d3f (diff)
chore(3p/nix-snapshotter): remove r/7823
The expression needs updating on our side to be compatible with the
nixpkgs bump in cl/11289. It wasn't used anywhere in TVL either.

This is also packaged in nixpkgs, since
f3ea5cfa6ec0a640735f4d6a0b5c91683c9bab25 / Feb 20 2024, so using it from
there feels reasonable.

Change-Id: Icd50ad959ca0de433b847180f1a5be308719f287
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11295
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nix-snapshotter/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/third_party/nix-snapshotter/default.nix b/third_party/nix-snapshotter/default.nix
deleted file mode 100644
index 58b30af25b..0000000000
--- a/third_party/nix-snapshotter/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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" { }