3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #230858 from tm-drtina/rdkafka-rename-repo-owner

rdkafka: rename repo owner
This commit is contained in:
Sandro 2023-06-05 23:14:59 +02:00 committed by GitHub
commit 7f821ea558
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "2.1.1";
src = fetchFromGitHub {
owner = "edenhill";
owner = "confluentinc";
repo = "librdkafka";
rev = "v${version}";
sha256 = "sha256-MwPRnD/S8o1gG6RWq2tKxqdpGum4FB5K8bHPAvlKW10=";
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "librdkafka - Apache Kafka C/C++ client library";
homepage = "https://github.com/edenhill/librdkafka";
homepage = "https://github.com/confluentinc/librdkafka";
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ commandodev ];