nixpkgs/pkgs/development/libraries/aws-c-compression/default.nix

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

43 lines
773 B
Nix
Raw Normal View History

2021-09-25 18:32:31 +00:00
{ lib, stdenv
, fetchFromGitHub
, aws-c-common
, cmake
, nix
2021-09-25 18:32:31 +00:00
}:
stdenv.mkDerivation rec {
pname = "aws-c-compression";
version = "0.2.17";
2021-09-25 18:32:31 +00:00
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-c-compression";
rev = "v${version}";
sha256 = "sha256-XtmSThfz4Cu7CygYrLNQifDCQ6l/c/0OR0lX+OxCYJM=";
2021-09-25 18:32:31 +00:00
};
nativeBuildInputs = [
cmake
];
buildInputs = [
aws-c-common
];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];
passthru.tests = {
inherit nix;
};
2021-09-25 18:32:31 +00:00
meta = with lib; {
description = "C99 implementation of huffman encoding/decoding";
homepage = "https://github.com/awslabs/aws-c-compression";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ r-burns ];
};
}