nixpkgs/pkgs/development/libraries/aws-checksums/default.nix

24 lines
572 B
Nix
Raw Normal View History

2019-02-14 01:08:22 -08:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "aws-checksums";
2020-01-26 08:03:35 -08:00
version = "0.1.5";
2019-02-14 01:08:22 -08:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
2020-01-26 08:03:35 -08:00
sha256 = "018fnpn0jc686jxp5wf8qxmjphk3z43l8n1mgcgaa9zw94i24jgk";
2019-02-14 01:08:22 -08:00
};
nativeBuildInputs = [ cmake ];
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 ];
};
}