Skip to content

Commit

Permalink
Merge pull request #301475 from cafkafk/kafka-cmak-init
Browse files Browse the repository at this point in the history
kafka-cmak: init at 3.0.0.6
  • Loading branch information
srhb authored Apr 16, 2024
2 parents ef13e3a + 060e03e commit 5672bc9
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pkgs/by-name/ka/kafka-cmak/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
lib,
stdenvNoCC,
fetchzip,
jdk,
gawk,
makeBinaryWrapper,
}:

stdenvNoCC.mkDerivation (finalAttrs: {
name = "CMAK";
version = "3.0.0.6";

src = fetchzip {
url = "https://github.com/yahoo/CMAK/releases/latest/download/cmak-${finalAttrs.version}.zip";
hash = "sha256-jMF1v2WV8ataFkz2VuVXOE6/QV+Kb0KBVRfj8yKdkUQ=";
};

buildInputs = [
gawk
jdk
];

nativeBuildInputs = [
makeBinaryWrapper
];

installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv ./* $out
wrapProgram $out/bin/cmak \
--set JAVA_HOME ${jdk.home} \
--prefix PATH : ${lib.makeBinPath [ gawk ]}
runHook postInstall
'';

passthru.updateScript = ./update.sh;

meta = with lib; {
description = "Cluster Manager for Apache Kafka, previously known as Kafka Manager";
license = licenses.apsl20;
maintainers = with maintainers; [cafkafk];
platforms = lib.platforms.unix;
mainProgram = "cmak";
};
})
4 changes: 4 additions & 0 deletions pkgs/by-name/ka/kafka-cmak/update.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p nix-update

nix-update kafka-cmak

0 comments on commit 5672bc9

Please sign in to comment.