9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
30 lines
711 B
Nix
30 lines
711 B
Nix
{ 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 stdenv.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;
|
|
};
|
|
}
|