32 lines
		
	
	
		
			828 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			828 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { stdenv, lib, fetchFromGitHub, autoreconfHook, go-md2man, pkgconfig
 | |
| , libcap, libseccomp, python3, systemd, yajl }:
 | |
| 
 | |
| stdenv.mkDerivation rec {
 | |
|   pname = "crun";
 | |
|   version = "0.8";
 | |
| 
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "containers";
 | |
|     repo = pname;
 | |
|     rev = version;
 | |
|     sha256 = "1anvlgw373031w0pp0b28l10yrnyhbj192n60bbbjahw487dk2fi";
 | |
|     fetchSubmodules = true;
 | |
|   };
 | |
| 
 | |
|   nativeBuildInputs = [ autoreconfHook go-md2man pkgconfig python3 ];
 | |
| 
 | |
|   buildInputs = [ libcap libseccomp systemd yajl ];
 | |
| 
 | |
|   enableParallelBuilding = true;
 | |
| 
 | |
|   # the tests require additional permissions
 | |
|   doCheck = false;
 | |
| 
 | |
|   meta = with lib; {
 | |
|     description = "A fast and lightweight fully featured OCI runtime and C library for running containers";
 | |
|     license = licenses.gpl3;
 | |
|     platforms = platforms.linux;
 | |
|     inherit (src.meta) homepage;
 | |
|   };
 | |
| }
 | 
