summary refs log tree commit diff
path: root/pkgs/tools/networking/ssh-askpass-fullscreen/default.nix
blob: 05e5183712624fae147a12d5307f6434ea7f79fe (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
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk2, openssh }:

stdenv.mkDerivation rec {
  pname = "ssh-askpass-fullscreen";
  version = "1.2";

  src = fetchFromGitHub {
    owner = "atj";
    repo = pname;
    rev = "v${version}";
    sha256 = "1zldhylln412974cnxyqcrrc6b4ry3m9s5ijq3dnwz2g7nz1bx9d";
  };

  nativeBuildInputs = [
    autoreconfHook
    pkg-config
  ];

  buildInputs = [
    gtk2
    openssh
  ];

  meta = with lib; {
    description = "A small SSH askpass GUI using GTK+2";
    homepage = "https://github.com/atj/ssh-askpass-fullscreen";
    license = licenses.gpl2;
    maintainers = with maintainers; [ caadar ];
    platforms = platforms.unix;
  };
}