Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

28 lines
707 B
Nix

{ lib, fetchFromGitHub, stdenv }:
stdenv.mkDerivation (finalAttrs: {
pname = "passh";
version = "2020-03-18";
src = fetchFromGitHub {
owner = "clarkwang";
repo = finalAttrs.pname;
rev = "7112e667fc9e65f41c384f89ff6938d23e86826c";
sha256 = "1g0rx94vqg36kp46f8v4x6jcmvdk85ds6bkrpayq772hbdm1b5z5";
};
installPhase = ''
mkdir -p $out/bin
cp ${finalAttrs.pname} $out/bin
'';
meta = with lib; {
homepage = "https://github.com/clarkwang/passh";
description = "Sshpass alternative for non-interactive ssh auth";
license = licenses.gpl3;
maintainers = [ maintainers.lovesegfault ];
mainProgram = finalAttrs.pname;
platforms = platforms.unix;
};
})