about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/x11-ssh-askpass/default.nix
blob: 049154d64413ffa48b5a37f6e9bd98cd87583646 (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
{ lib, stdenv, fetchurl, xorg, imake, gccmakedep }:

stdenv.mkDerivation rec {
  pname = "x11-ssh-askpass";
  version = "1.2.4.1";

  outputs = [ "out" "man" ];

  src = fetchurl {
    url = "http://pkgs.fedoraproject.org/repo/pkgs/openssh/x11-ssh-askpass-${version}.tar.gz/8f2e41f3f7eaa8543a2440454637f3c3/x11-ssh-askpass-${version}.tar.gz";
    sha256 = "620de3c32ae72185a2c9aeaec03af24242b9621964e38eb625afb6cdb30b8c88";
  };

  nativeBuildInputs = [ imake gccmakedep ];
  buildInputs = [ xorg.libX11 xorg.libXt xorg.libICE xorg.libSM ];

  configureFlags = [
    "--with-app-defaults-dir=$out/etc/X11/app-defaults"
  ];

  dontUseImakeConfigure = true;
  postConfigure = ''
    xmkmf -a
  '';

  installTargets = [ "install" "install.man" ];

  meta = with lib; {
    homepage = "https://github.com/sigmavirus24/x11-ssh-askpass";
    description = "Lightweight passphrase dialog for OpenSSH or other open variants of SSH";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}