diff options
author | Karel Kočí <cynerd@email.cz> | 2022-04-09 09:44:39 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-04-12 21:48:06 +0200 |
commit | 1c2206f46fc9f608f805071dd5e036d46249756d (patch) | |
tree | bbb44dbfc1575f228503afc1f58810edb0373e29 /pkgs/sentinel/certgen | |
parent | 5339e045194c5ad482250c0271959a5fd9f97db2 (diff) | |
download | nixturris-1c2206f46fc9f608f805071dd5e036d46249756d.tar.gz nixturris-1c2206f46fc9f608f805071dd5e036d46249756d.tar.bz2 nixturris-1c2206f46fc9f608f805071dd5e036d46249756d.zip |
treewide: move sentinel to the dedicated repository
Diffstat (limited to 'pkgs/sentinel/certgen')
-rw-r--r-- | pkgs/sentinel/certgen/default.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/sentinel/certgen/default.nix b/pkgs/sentinel/certgen/default.nix deleted file mode 100644 index bc0b35c..0000000 --- a/pkgs/sentinel/certgen/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ buildPythonApplication, lib, fetchgit -, python3 -, ipset -}: - -buildPythonApplication rec { - pname = "sentinel-dynfw-client"; - version = "6.2"; - meta = with lib; { - homepage = "https://gitlab.nic.cz/turris/sentinel/certgen"; - description = "Sentinel automated passwords and certificates retrieval"; - license = licenses.gpl3; - }; - - src = fetchgit { - url = "https://gitlab.nic.cz/turris/sentinel/certgen.git"; - rev = "v" + version; - sha256 = "10ii3j3wqdib7m2fc0w599981mv9q3ahj96q4kyrn5sh18v2c7nb"; - }; - - # TODO we are missing crypto-wrapper - buildInputs = with python3.pkgs; [six requests cryptography]; -} |