mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
zkg: init at 2.13.0
This commit is contained in:
parent
c3fe41dd0a
commit
29d380aa2f
2 changed files with 44 additions and 0 deletions
42
pkgs/tools/package-management/zkg/default.nix
Normal file
42
pkgs/tools/package-management/zkg/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
, pkgs
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "zkg";
|
||||
version = "2.13.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zeek";
|
||||
repo = "package-manager";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-kQFm8VlbvJ791Ll8b0iu6xqaxhYTf41jTmvGxLgIzuE=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -39114,6 +39114,8 @@ 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 a new issue