My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/admin/ssh-import-id/default.nix

44 lines
914 B

{ buildPythonPackage
, lib
, fetchgit
, requests
, distro
, makeWrapper
, installShellFiles
, extraHandlers ? []
}:
buildPythonPackage rec {
pname = "ssh-import-id";
version = "5.11";
src = fetchgit {
url = "https://git.launchpad.net/ssh-import-id";
rev = version;
sha256 = "sha256-tYbaJGH59qyvjp4kwo3ZFVs0EaE0Lsd2CQ6iraFkAdI=";
};
propagatedBuildInputs = [
requests
distro
] ++ extraHandlers;
nativeBuildInputs = [
makeWrapper
installShellFiles
];
postInstall = ''
installManPage $src/usr/share/man/man1/ssh-import-id.1
'';
# handlers require main bin, main bin requires handlers
makeWrapperArgs = [ "--prefix" ":" "$out/bin" ];
meta = with lib; {
description = "Retrieves an SSH public key and installs it locally";
license = licenses.gpl3;
maintainers = with maintainers; [ mkg20001 viraptor ];
platforms = platforms.unix;
};
}