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

24 lines
572 B
Nix
Raw Normal View History

2019-02-14 10:08:22 +01:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "aws-checksums";
version = "0.1.3";
2019-02-14 10:08:22 +01:00
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
sha256 = "1s6zwf97rkkvnf3p7vlaykwa4pxpvj78pmxvvjf5jk29f93b49xp";
2019-02-14 10:08:22 +01: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 ];
};
}