nixpkgs/pkgs/development/libraries/aws-checksums/default.nix
Jonathan Ringer 3067f97463 Revert "aws-checksums: fix build with cmake 3.19"
This reverts commit 61574a09d6.

no longer needed after namelink fixes to cmake
2020-12-11 07:23:28 -08:00

26 lines
625 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "aws-checksums";
version = "0.1.7";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
sha256 = "0am1hfzqir44zcx6y6c7jw74qvbsav8ppr9dahpdh3ac95cjf38a";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS:BOOL=ON" ];
meta = with lib; {
description = "HW accelerated CRC32c and CRC32";
homepage = "https://github.com/awslabs/aws-checksums";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej eelco ];
};
}