about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/3rdparty/addons/krunner-ssh.nix
blob: caf3819a3611ae40c39f72cdda17980aec91f45f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib, stdenv, fetchFromGitLab, python3 }:
let
  pythonEnv = python3.withPackages (p: with p; [ dbus-python pygobject3 ]);
in
stdenv.mkDerivation rec {
  pname = "krunner-ssh";
  version = "1.0";

  src = fetchFromGitLab {
    owner = "Programie";
    repo = "krunner-ssh";
    rev = version;
    sha256 = "sha256-rFTTvmetDeN6t0axVc+8t1TRiuyPBpwqhvsq2IFxa/A=";
  };

  postPatch = ''
    sed -e "s|Exec=.*|Exec=$out/libexec/runner.py|" -i ssh-runner.service
  '';

  nativeBuildInputs = [
    pythonEnv
  ];

  installPhase = ''
    runHook preInstall

    patchShebangs runner.py

    install -m 0755 -D runner.py $out/libexec/runner.py
    install -m 0755 -D ssh-runner.desktop $out/share/kservices5/ssh-runner.desktop
    install -m 0755 -D ssh-runner.service $out/share/dbus-1/services/com.selfcoders.ssh-runner.service

    runHook postInstall
  '';

  meta = with lib; {
    description = "A simple backend for KRunner providing SSH hosts from your .ssh/known_hosts file as search results";
    homepage = "https://selfcoders.com/projects/krunner-ssh";
    license = licenses.mit;
    maintainers = with maintainers; [ aanderse ];
    platforms = platforms.linux;
  };
}