Change-Id: I8e50d4941c151a8a7c006441b2f8f951219dc3e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9327 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			414 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# 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" { }
 |