fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ buildPythonPackage
2, lib
3, fetchgit
4, requests
5, distro
6, makeWrapper
7, extraHandlers ? []
8}:
9
10buildPythonPackage rec {
11 pname = "ssh-import-id";
12 version = "5.11";
13
14 src = fetchgit {
15 url = "https://git.launchpad.net/ssh-import-id";
16 rev = version;
17 sha256 = "sha256-tYbaJGH59qyvjp4kwo3ZFVs0EaE0Lsd2CQ6iraFkAdI=";
18 };
19
20 propagatedBuildInputs = [
21 requests
22 distro
23 ] ++ extraHandlers;
24
25 nativeBuildInputs = [
26 makeWrapper
27 ];
28
29 # handlers require main bin, main bin requires handlers
30 makeWrapperArgs = [ "--prefix" ":" "$out/bin" ];
31
32 meta = with lib; {
33 description = "Retrieves an SSH public key and installs it locally";
34 license = licenses.gpl3;
35 maintainers = with maintainers; [ mkg20001 ];
36 platforms = platforms.unix;
37 };
38}