aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix
new file mode 100644
index 000000000000..f72c916acf99
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchFromGitHub, makeWrapper, openssl, coreutils, gnugrep }:
+
+stdenv.mkDerivation {
+ pname = "bash-supergenpass-unstable";
+ version = "2018-04-18";
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ src = fetchFromGitHub {
+ owner = "lanzz";
+ repo = "bash-supergenpass";
+ rev = "ece772b9ec095946ac4ea985cda5561b211e56f0";
+ sha256 = "1gkbrycyyl7y3klbfx7xjvvfw5df1h4fj6x1f73gglfy6nk8ffnd";
+ };
+
+ installPhase = ''
+ install -m755 -D supergenpass.sh "$out/bin/supergenpass"
+ wrapProgram "$out/bin/supergenpass" --prefix PATH : "${stdenv.lib.makeBinPath [ openssl coreutils gnugrep ]}"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Bash shell-script implementation of SuperGenPass password generation";
+ longDescription = ''
+ Bash shell-script implementation of SuperGenPass password generation
+ Usage: ./supergenpass.sh <domain> [ <length> ]
+
+ Default <length> is 10, which is also the original SuperGenPass default length.
+
+ The <domain> parameter is also optional, but it does not make much sense to omit it.
+
+ supergenpass will ask for your master password interactively, and it will not be displayed on your terminal.
+ '';
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ fgaz ];
+ homepage = "https://github.com/lanzz/bash-supergenpass";
+ };
+}
+