05dd614c53
* redpanda: fix linux build * redpanda: linux arm hash update Co-authored-by: Bobby Rong <rjl931189261@126.com> * redpanda: darwin arm hash update Co-authored-by: Bobby Rong <rjl931189261@126.com> Co-authored-by: Bobby Rong <rjl931189261@126.com>
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
let
|
|
version = "21.11.15";
|
|
platform = if stdenv.isLinux then "linux" else "darwin";
|
|
arch = if stdenv.isAarch64 then "arm" else "amd";
|
|
sha256s = {
|
|
darwin.amd = "sha256-Yf4O7lVcf+nmb0wFTx7jLjUSmdAItoUfPlkhHveI9UY=";
|
|
darwin.arm = "sha256-vKfFBheDZtvcbg0zbj3rqUEQczZvySuGuM3RopnDJG8=";
|
|
linux.amd = "sha256:0vpxn7kcpqylk0nc74m6yxgwwf8ns8pyb6kxnmnmv2x58f8x4c8n";
|
|
linux.arm = "sha256-1AQSB2V5zGivU0UinTST2kOydQf/bmLbpjdW0Yo4ptE=";
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
pname = "redpanda";
|
|
inherit version;
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/redpanda-data/redpanda/releases/download/v${version}/rpk-${platform}-${arch}64.zip";
|
|
sha256 = sha256s.${platform}.${arch};
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp rpk $out/bin
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# stripping somehow completely breaks it
|
|
dontStrip = true;
|
|
|
|
meta = with lib; {
|
|
description = "Redpanda is a streaming data platform for developers. Kafka API compatible. 10x faster. No ZooKeeper. No JVM! ";
|
|
license = licenses.bsl11;
|
|
homepage = "https://redpanda.com/";
|
|
maintainers = with maintainers; [ happysalada ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|