Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-01-28 18:30:08 +00:00
committed by GitHub
34 changed files with 944 additions and 155 deletions
@@ -0,0 +1,32 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "go-cve-search";
version = "0.1.3";
src = fetchFromGitHub {
owner = "s-index";
repo = pname;
rev = "v${version}";
sha256 = "0hbv829daviskwsyp9xjcvl52m22986b2cylf2rldnxw5x8zqdvd";
};
vendorSha256 = "0bhxk39ivbkhwjvq6415lax1pzn208b7px1id0d1nry93bk2zynd";
# Tests requires network access
doCheck = false;
meta = with lib; {
description = "A lightweight CVE search tool";
longDescription = ''
go-cve-search is a lightweight tool to search CVE (Common Vulnerabilities
and Exposures).
'';
homepage = "https://github.com/s-index/go-cve-search";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+35
View File
@@ -0,0 +1,35 @@
{ lib
, buildPythonApplication
, docopt
, fetchFromGitHub
, importlib-metadata
, poetry-core
}:
buildPythonApplication rec {
pname = "xortool";
version = "1.0.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "hellman";
repo = pname;
rev = "v${version}";
sha256 = "19lfadi28r89bl5q8fhrxgjgs3nx3kgjd4rdg7wbvzi1cn29c5n7";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ docopt importlib-metadata ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "xortool" ];
meta = with lib; {
description = "Tool to analyze multi-byte XOR cipher";
homepage = "https://github.com/hellman/xortool";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}