mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
50 lines
1.5 KiB
Nix
50 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, unstableGitUpdater
|
|
, makeWrapper
|
|
, openssl
|
|
, coreutils
|
|
, gnugrep }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "bash-supergenpass";
|
|
version = "0-unstable-2024-03-24";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lanzz";
|
|
repo = "bash-supergenpass";
|
|
rev = "03416ad4d753d825acd0443a01ac13d385d5e048";
|
|
sha256 = "Q+xmT72UFCc71K87mAzpyTmEIXjR9SqX0xzmQfi5P9k=";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -m755 -D supergenpass.sh "$out/bin/supergenpass"
|
|
wrapProgram "$out/bin/supergenpass" --prefix PATH : "${lib.makeBinPath [ openssl coreutils gnugrep ]}"
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
url = "https://github.com/lanzz/bash-supergenpass.git";
|
|
};
|
|
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/lanzz/bash-supergenpass";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
mainProgram = "supergenpass";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|