bash-supergenpass: init at 2012-11-02 (#29797)
* Add fgaz to mantainers * bash-supergenpass: init at 2012-11-02
This commit is contained in:
parent
472bb9681d
commit
1d163835c8
@ -200,6 +200,7 @@
|
||||
fadenb = "Tristan Helmich <tristan.helmich+nixos@gmail.com>";
|
||||
falsifian = "James Cook <james.cook@utoronto.ca>";
|
||||
fare = "Francois-Rene Rideau <fahree@gmail.com>";
|
||||
fgaz = "Francesco Gazzetta <francygazz@gmail.com>";
|
||||
florianjacob = "Florian Jacob <projects+nixos@florianjacob.de>";
|
||||
flosse = "Markus Kohlhase <mail@markus-kohlhase.de>";
|
||||
fluffynukeit = "Daniel Austin <dan@fluffynukeit.com>";
|
||||
|
39
pkgs/tools/security/bash-supergenpass/default.nix
Normal file
39
pkgs/tools/security/bash-supergenpass/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, openssl, coreutils, gnugrep }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bash-supergenpass-unstable-${version}";
|
||||
version = "2012-11-02";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lanzz";
|
||||
repo = "bash-supergenpass";
|
||||
rev = "c84eaa22fb59ab6c390e7f2de7984513347e3a9a";
|
||||
sha256 = "0d3l55kdrf6arb98vwwz9ww55ing5w323fg7546v56hlq3hs5qc9";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -1152,6 +1152,8 @@ with pkgs;
|
||||
|
||||
stagit = callPackage ../development/tools/stagit { };
|
||||
|
||||
bash-supergenpass = callPackage ../tools/security/bash-supergenpass { };
|
||||
|
||||
syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {};
|
||||
|
||||
syslogng = callPackage ../tools/system/syslog-ng { };
|
||||
|
Loading…
Reference in New Issue
Block a user