about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-03-18 11:20:53 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-03-18 11:20:53 +0100
commitee92e0bdf8ed80d21dda45474c88e5c23f24c239 (patch)
treea1fdc9aaefe4794caa309c5d0a05f134075d1f38 /pkgs/by-name
parent62748bdf4286c1b1a3eedb8a5bc4e9198e8c7610 (diff)
certi: init at 0.1.0-unstable-2023-01-27
ADCS abuser

https://github.com/zer1t0/certi
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/ce/certi/package.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/by-name/ce/certi/package.nix b/pkgs/by-name/ce/certi/package.nix
new file mode 100644
index 0000000000000..90e929114b4d1
--- /dev/null
+++ b/pkgs/by-name/ce/certi/package.nix
@@ -0,0 +1,39 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "certi";
+  version = "0.1.0-unstable-2023-01-27";
+  pyproject = true;
+
+  src = fetchFromGitHub {
+    owner = "zer1t0";
+    repo = "certi";
+    # https://github.com/zer1t0/certi/issues/6
+    rev = "6cfa656c6c0fcbbe9b9bce847b052c881202354e";
+    hash = "sha256-6j/Lwq68qyfEAo5MRibgdomrCO4KEd/DlAEwB+Z52Hc=";
+  };
+
+  nativeBuildInputs = with python3.pkgs; [
+    setuptools
+  ];
+
+  propagatedBuildInputs = with python3.pkgs; [
+    cryptography
+    impacket
+  ];
+
+  pythonImportsCheck = [
+    "certilib"
+  ];
+
+  meta = with lib; {
+    description = "ADCS abuser";
+    homepage = "https://github.com/zer1t0/certi";
+    license = licenses.agpl3Only;
+    maintainers = with maintainers; [ fab ];
+    mainProgram = "certi";
+  };
+}