mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
aws-c-compression: init at 0.2.14
This commit is contained in:
parent
530cd8c3cc
commit
ff6afebdb3
38
pkgs/development/libraries/aws-c-compression/default.nix
Normal file
38
pkgs/development/libraries/aws-c-compression/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, aws-c-common
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aws-c-compression";
|
||||
version = "0.2.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "awslabs";
|
||||
repo = "aws-c-compression";
|
||||
rev = "v${version}";
|
||||
sha256 = "0fs3zhhzxsb9nfcjpvfbcq79hal7si2ia1c09scab9a8m264f4vd";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
aws-c-common
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
||||
"-DBUILD_SHARED_LIBS=ON"
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -15322,6 +15322,8 @@ with pkgs;
|
||||
|
||||
aws-c-common = callPackage ../development/libraries/aws-c-common { };
|
||||
|
||||
aws-c-compression = callPackage ../development/libraries/aws-c-compression { };
|
||||
|
||||
aws-c-event-stream = callPackage ../development/libraries/aws-c-event-stream { };
|
||||
|
||||
aws-c-io = callPackage ../development/libraries/aws-c-io {
|
||||
|
Loading…
Reference in New Issue
Block a user