51 lines
		
	
	
		
			925 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			925 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   stdenv,
 | |
|   fetchFromGitHub,
 | |
|   cmake,
 | |
|   aws-c-common,
 | |
|   nix,
 | |
|   openssl,
 | |
| }:
 | |
| 
 | |
| stdenv.mkDerivation (finalAttrs: {
 | |
|   pname = "aws-c-cal";
 | |
|   # nixpkgs-update: no auto update
 | |
|   version = "0.8.0";
 | |
| 
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "awslabs";
 | |
|     repo = "aws-c-cal";
 | |
|     rev = "v${finalAttrs.version}";
 | |
|     hash = "sha256-dYFUYdMQMT8CZFMrCrhQ8JPEhA4CVf+f7VLFt3JNmn8=";
 | |
|   };
 | |
| 
 | |
|   patches = [
 | |
|     # Fix openssl adaptor code for musl based static binaries.
 | |
|     ./aws-c-cal-musl-compat.patch
 | |
|   ];
 | |
| 
 | |
|   nativeBuildInputs = [ cmake ];
 | |
| 
 | |
|   buildInputs = [
 | |
|     aws-c-common
 | |
|     openssl
 | |
|   ];
 | |
| 
 | |
|   cmakeFlags = [
 | |
|     "-DBUILD_SHARED_LIBS=ON"
 | |
|   ];
 | |
| 
 | |
|   passthru.tests = {
 | |
|     inherit nix;
 | |
|   };
 | |
| 
 | |
|   meta = with lib; {
 | |
|     description = "AWS Crypto Abstraction Layer";
 | |
|     homepage = "https://github.com/awslabs/aws-c-cal";
 | |
|     license = licenses.asl20;
 | |
|     platforms = platforms.unix;
 | |
|     maintainers = with maintainers; [ orivej ];
 | |
|   };
 | |
| })
 | 
