| 
									
										
										
										
											2023-05-16 11:47:17 +00:00
										 |  |  | { pkgs ? ( | 
					
						
							|  |  |  |     let | 
					
						
							|  |  |  |       inherit (builtins) fetchTree fromJSON readFile; | 
					
						
							|  |  |  |       inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs gomod2nix; | 
					
						
							|  |  |  |     in | 
					
						
							|  |  |  |     import (fetchTree nixpkgs.locked) { | 
					
						
							|  |  |  |       overlays = [ | 
					
						
							|  |  |  |         (import "${fetchTree gomod2nix.locked}/overlay.nix") | 
					
						
							|  |  |  |       ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   ) | 
					
						
							|  |  |  |   , lib | 
					
						
							| 
									
										
										
										
											2023-05-18 12:53:46 +00:00
										 |  |  |   , version | 
					
						
							| 
									
										
										
										
											2023-05-16 11:47:17 +00:00
										 |  |  | }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pkgs.buildGoApplication rec { | 
					
						
							|  |  |  |   pname = "out-of-tree"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 12:53:46 +00:00
										 |  |  |   inherit version; | 
					
						
							| 
									
										
										
										
											2023-05-16 11:47:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   nativeBuildInputs = [ pkgs.makeWrapper ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   src = ./.; | 
					
						
							|  |  |  |   pwd = ./.; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   doCheck = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   postFixup = ''
 | 
					
						
							|  |  |  |     wrapProgram $out/bin/out-of-tree \ | 
					
						
							|  |  |  |       --prefix PATH : "${lib.makeBinPath [ pkgs.qemu pkgs.podman ]}" | 
					
						
							|  |  |  |   '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = with lib; { | 
					
						
							|  |  |  |     description = "kernel {module, exploit} development tool"; | 
					
						
							|  |  |  |     homepage = "https://out-of-tree.io"; | 
					
						
							|  |  |  |     maintainers = [ maintainers.dump_stack ]; | 
					
						
							|  |  |  |     license = licenses.agpl3Plus; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |