2007-04-02 15:46:56 +02:00
|
|
|
{stdenv, fetchurl, x11, imake}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "x11-ssh-askpass-1.2.4.1";
|
2010-10-07 15:14:21 +02:00
|
|
|
|
2007-04-02 15:46:56 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://www.jmknoble.net/software/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1.tar.gz;
|
|
|
|
sha1 = "78c992951685d4dbffb77536f37b83ae2a6eafc7";
|
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = "
|
|
|
|
configureFlags=\"--with-app-defaults-dir=$out/etc/X11/app-defaults\"
|
|
|
|
";
|
|
|
|
|
|
|
|
buildPhase = "xmkmf; make includes; make";
|
|
|
|
|
|
|
|
buildInputs = [x11 imake];
|
2010-10-07 15:13:57 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.jmknoble.net/software/x11-ssh-askpass/";
|
2010-10-07 16:05:19 +02:00
|
|
|
description = "Lightweight passphrase dialog for OpenSSH or other open variants of SSH";
|
2010-10-07 15:13:57 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [];
|
|
|
|
};
|
2007-04-02 15:46:56 +02:00
|
|
|
}
|