mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-17 14:18:32 +00:00
zkg: drop
This commit is contained in:
parent
bfc8218dea
commit
543ba76c68
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 ###
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user