zed: init at 1.2.0

This commit is contained in:
Mostly Void 2022-08-11 21:17:59 +05:30
parent e640389011
commit 36cbcf4001
No known key found for this signature in database
GPG Key ID: E2B7342D0CAA82C2
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "zed";
version = "1.2.0";
src = fetchFromGitHub {
owner = "brimdata";
repo = pname;
rev = "v${version}";
sha256 = "sha256-BK4LB37jr/9O0sjYgFtnEkbFqTsp/1+hcmCNMFDPiPM=";
};
vendorSha256 = "sha256-oAkQRUaEP/RNjpDH4U8XFVokf7KiLk0OWMX+U7qny70=";
subPackages = [ "cmd/zed" "cmd/zq" ];
meta = with lib; {
description = "A novel data lake based on super-structured data";
homepage = "https://github.com/brimdata/zed";
license = licenses.bsd3;
maintainers = with maintainers; [ dit7ya ];
};
}

View File

@ -12367,6 +12367,8 @@ with pkgs;
zdelta = callPackage ../tools/compression/zdelta { };
zed = callPackage ../development/tools/zed { };
zellij = callPackage ../tools/misc/zellij {
inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation;
};