mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
zq: drop
it is a duplicate of zed
This commit is contained in:
parent
0cb9271b71
commit
a28d99d9bd
4 changed files with 2 additions and 37 deletions
|
@ -41,6 +41,6 @@ buildGoModule rec {
|
||||||
homepage = "https://zed.brimdata.io";
|
homepage = "https://zed.brimdata.io";
|
||||||
changelog = "https://github.com/brimdata/zed/blob/v${version}/CHANGELOG.md";
|
changelog = "https://github.com/brimdata/zed/blob/v${version}/CHANGELOG.md";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ dit7ya ];
|
maintainers = with maintainers; [ dit7ya knl ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
{ lib
|
|
||||||
, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, buildGoModule
|
|
||||||
, testers
|
|
||||||
, zq
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildGoModule rec {
|
|
||||||
pname = "zq";
|
|
||||||
version = "1.4.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "brimdata";
|
|
||||||
repo = "zed";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-ias2HKwZo5Q/0M4YZI4wLgzMVWmannruXlhp8IsOuyU=";
|
|
||||||
};
|
|
||||||
|
|
||||||
vendorHash = "sha256-h5NYx6xhIh4i/tS5cGHXBomnVZCUn8jJuzL6k1+IdKk=";
|
|
||||||
|
|
||||||
subPackages = [ "cmd/zq" ];
|
|
||||||
|
|
||||||
ldflags = [ "-s" "-X" "github.com/brimdata/zed/cli.Version=${version}" ];
|
|
||||||
|
|
||||||
passthru.tests = testers.testVersion { package = zq; };
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "A command-line tool for processing data in diverse input formats, providing search, analytics, and extensive transformations using the Zed language";
|
|
||||||
homepage = "https://zed.brimdata.io";
|
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [ knl ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1697,6 +1697,7 @@ mapAliases ({
|
||||||
zdfmediathk = throw "'zdfmediathk' has been renamed to/replaced by 'mediathekview'"; # Converted to throw 2022-02-22
|
zdfmediathk = throw "'zdfmediathk' has been renamed to/replaced by 'mediathekview'"; # Converted to throw 2022-02-22
|
||||||
zimreader = throw "zimreader has been removed from nixpkgs as it has been replaced by kiwix-serve and stopped working with modern zimlib versions"; # Added 2021-03-28
|
zimreader = throw "zimreader has been removed from nixpkgs as it has been replaced by kiwix-serve and stopped working with modern zimlib versions"; # Added 2021-03-28
|
||||||
zimwriterfs = throw "zimwriterfs is now part of zim-tools"; # Added 2022-06-10.
|
zimwriterfs = throw "zimwriterfs is now part of zim-tools"; # Added 2022-06-10.
|
||||||
|
zq = zed.overrideAttrs (old: { meta = old.meta // { mainProgram = "zq"; }; }); # Added 2023-02-06
|
||||||
|
|
||||||
# TODO(ekleog): add ‘wasm’ alias to ‘ocamlPackages.wasm’ after 19.03
|
# TODO(ekleog): add ‘wasm’ alias to ‘ocamlPackages.wasm’ after 19.03
|
||||||
# branch-off
|
# branch-off
|
||||||
|
|
|
@ -1625,8 +1625,6 @@ with pkgs;
|
||||||
|
|
||||||
breitbandmessung = callPackage ../applications/networking/breitbandmessung { };
|
breitbandmessung = callPackage ../applications/networking/breitbandmessung { };
|
||||||
|
|
||||||
zq = callPackage ../development/tools/zq { };
|
|
||||||
|
|
||||||
### APPLICATIONS/VERSION-MANAGEMENT
|
### APPLICATIONS/VERSION-MANAGEMENT
|
||||||
|
|
||||||
deepgit = callPackage ../applications/version-management/deepgit {};
|
deepgit = callPackage ../applications/version-management/deepgit {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue