zkg: drop

This commit is contained in:
Mikael Fangel 2023-10-20 23:12:13 +02:00
parent bfc8218dea
commit 543ba76c68
No known key found for this signature in database
GPG Key ID: 306DE4426F0B77C3
3 changed files with 1 additions and 44 deletions

View File

@ -1,42 +0,0 @@
{ lib
, python3
, fetchFromGitHub
, pkgs
}:
python3.pkgs.buildPythonApplication rec {
pname = "zkg";
version = "2.14.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "zeek";
repo = "package-manager";
rev = "refs/tags/v${version}";
hash = "sha256-HdOzxSU3XWz1ZH96woDWrHzKbpJW3/IKkpc2tGfyi9o=";
};
propagatedBuildInputs = with python3.pkgs; [
btest
gitpython
semantic-version
sphinx
sphinx-rtd-theme
pkgs.bash
];
# No tests available
doCheck = false;
pythonImportsCheck = [
"zeekpkg"
];
meta = with lib; {
description = "Package manager for Zeek";
homepage = "https://github.com/zeek/package-manager";
changelog = "https://github.com/zeek/package-manager/blob/${version}/CHANGES";
license = licenses.ncsa;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -973,6 +973,7 @@ mapAliases ({
### Z ###
zinc = zincsearch; # Added 2023-05-28
zkg = throw "'zkg' has been replaced by 'zeek'";
zq = zed.overrideAttrs (old: { meta = old.meta // { mainProgram = "zq"; }; }); # Added 2023-02-06
### UNSORTED ###

View File

@ -41488,8 +41488,6 @@ with pkgs;
xbps = callPackage ../tools/package-management/xbps { };
zkg = callPackage ../tools/package-management/zkg { };
xcftools = callPackage ../tools/graphics/xcftools { };
xhyve = callPackage ../applications/virtualization/xhyve {