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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
724 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, nix }:
2019-02-14 10:08:22 +01:00
stdenv.mkDerivation rec {
pname = "aws-checksums";
version = "0.1.17";
2019-02-14 10:08:22 +01:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-OoEwubEEkLJmlqmQR4/rp4+b1WYJEbcjYDSdXXHleZQ=";
2019-02-14 10:08:22 +01:00
};
nativeBuildInputs = [ cmake ];
2020-12-26 02:59:53 +01:00
buildInputs = [ aws-c-common ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];
2020-02-09 10:20:00 +01:00
passthru.tests = {
inherit nix;
};
2019-02-14 10:08:22 +01:00
meta = with lib; {
description = "HW accelerated CRC32c and CRC32";
homepage = "https://github.com/awslabs/aws-checksums";
2019-02-14 10:08:22 +01:00
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej eelco ];
};
}