about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/avro-c
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/avro-c')
-rw-r--r--nixpkgs/pkgs/development/libraries/avro-c/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/avro-c/default.nix b/nixpkgs/pkgs/development/libraries/avro-c/default.nix
new file mode 100644
index 000000000000..a5acd7c7898b
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/avro-c/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, zlib }:
+
+let
+  version = "1.9.1";
+in stdenv.mkDerivation {
+  pname = "avro-c";
+  inherit version;
+
+  src = fetchurl {
+    url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
+    sha256 = "0hj6w1w5mqkhnhkvjc0zz5njnnrbcjv5ml4f8gq80wff2cgbrxvx";
+  };
+
+  postPatch = ''
+    patchShebangs .
+  '';
+
+  nativeBuildInputs = [ pkg-config cmake ];
+
+  buildInputs = [ jansson zlib ];
+
+  meta = with lib; {
+    description = "A C library which implements parts of the Avro Specification";
+    homepage = "https://avro.apache.org/";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ lblasc ];
+    platforms = platforms.all;
+  };
+}