nixpkgs/pkgs/tools/security/bash-supergenpass/default.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00

46 lines
1.4 KiB
Nix

{ lib, stdenv
, fetchFromGitHub
, unstableGitUpdater
, makeWrapper
, openssl
, coreutils
, gnugrep }:
stdenv.mkDerivation {
pname = "bash-supergenpass";
version = "unstable-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 ]}"
'';
passthru.updateScript = unstableGitUpdater { };
meta = with 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";
};
}