3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/avro-c/default.nix

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

28 lines
687 B
Nix
Raw Normal View History

{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, zlib }:
2018-02-26 09:02:55 +00:00
2021-07-17 19:37:27 +01:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "avro-c";
2022-02-10 18:57:04 +00:00
version = "1.11.0";
2018-02-26 09:02:55 +00:00
src = fetchurl {
url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
2022-02-10 18:57:04 +00:00
sha256 = "sha256-BlJZClStjkqliiuf8fTOcaZKQbCgXEUp0cUYxh52BkM=";
2018-02-26 09:02:55 +00:00
};
2018-02-26 22:27:41 +00:00
postPatch = ''
patchShebangs .
2018-02-26 09:02:55 +00:00
'';
nativeBuildInputs = [ pkg-config cmake ];
2018-02-26 22:27:41 +00:00
buildInputs = [ jansson zlib ];
2018-02-26 09:02:55 +00:00
meta = with lib; {
2018-02-26 09:02:55 +00:00
description = "A C library which implements parts of the Avro Specification";
homepage = "https://avro.apache.org/";
2018-02-26 22:27:41 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ lblasc ];
platforms = platforms.all;
2018-02-26 09:02:55 +00:00
};
}