forked from rarias/jungle
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			593 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			593 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   stdenv
 | |
| , lib
 | |
| , fetchFromGitHub
 | |
| , cmake
 | |
| }:
 | |
| 
 | |
| stdenv.mkDerivation {
 | |
|   pname = "bigotes";
 | |
|   version = "9dce13";
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "rodarima";
 | |
|     repo = "bigotes";
 | |
|     rev = "9dce13446a8da30bea552d569d260d54e0188518";
 | |
|     sha256 = "sha256-ktxM3pXiL8YXSK+/IKWYadijhYXqGoLY6adLk36iigE=";
 | |
|   };
 | |
|   nativeBuildInputs = [ cmake ];
 | |
| 
 | |
|   meta = {
 | |
|     homepage = "https://github.com/rodarima/bigotes";
 | |
|     description = "Versatile benchmark tool";
 | |
|     maintainers = with lib.maintainers.bsc; [ rarias ];
 | |
|     platforms = lib.platforms.linux;
 | |
|     license = lib.licenses.gpl3Plus;
 | |
|   };
 | |
| }
 |