Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion packages/bento.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let
meta = with lib; {
description = "Fancy stream processing made operationally mundane";
license = licenses.mit;
platforms = platforms.darwin;
platforms = platforms.darwin ++ [ "aarch64-linux" ];
};
in

Expand Down Expand Up @@ -41,5 +41,17 @@ else if system == "aarch64-darwin" then
};
}

else if system == "aarch64-linux" then
stdenv.mkDerivation
{
inherit pname version installPhase dontStrip meta;

src = fetchzip {
url = "https://github.com/warpstreamlabs/bento/releases/download/v${version}/bento_${version}_linux_arm64.tar.gz";
hash = "sha256-jNz/LXbfwHkDdyy4EFGIbp3P2sq6fFedCU7trYryhlg=";
stripRoot = false;
};
}

else
abort "unsupported system"
Loading