diff options
author | Karel Kočí <cynerd@email.cz> | 2022-10-03 22:22:47 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-10-03 22:22:47 +0200 |
commit | b4687de4ae70cd24f4673f2e46e80e45f8bdcc1a (patch) | |
tree | 3de4c9cfb6f65224c3726f598dc8356b4b7af907 /pkgs/certgen | |
parent | ee4cfdda0a54567735e4c30662afd3f76e1c8a61 (diff) | |
download | nixturris-b4687de4ae70cd24f4673f2e46e80e45f8bdcc1a.tar.gz nixturris-b4687de4ae70cd24f4673f2e46e80e45f8bdcc1a.tar.bz2 nixturris-b4687de4ae70cd24f4673f2e46e80e45f8bdcc1a.zip |
certgen: remove as that is Sentinel package
Diffstat (limited to 'pkgs/certgen')
-rw-r--r-- | pkgs/certgen/default.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/certgen/default.nix b/pkgs/certgen/default.nix deleted file mode 100644 index 3818b9b..0000000 --- a/pkgs/certgen/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ buildPythonApplication, lib, fetchgit -, python3 -, crypto-wrapper -}: - -buildPythonApplication rec { - pname = "sentinel-certgen"; - 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"; - }; - - propagatedBuildInputs = with python3.pkgs; [ - crypto-wrapper - six requests cryptography - ]; -} |