* Added x11-ssh-askpass.
svn path=/nixpkgs/trunk/; revision=8529
This commit is contained in:
parent
ad6fa03dfd
commit
83173f1ee9
18
pkgs/tools/networking/x11-ssh-askpass/default.nix
Normal file
18
pkgs/tools/networking/x11-ssh-askpass/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{stdenv, fetchurl, x11, imake}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "x11-ssh-askpass-1.2.4.1";
|
||||||
|
|
||||||
|
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];
|
||||||
|
}
|
@ -530,6 +530,11 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
x11_ssh_askpass = import ../tools/networking/x11-ssh-askpass {
|
||||||
|
inherit fetchurl stdenv x11;
|
||||||
|
inherit (xorg) imake;
|
||||||
|
};
|
||||||
|
|
||||||
xmlroff = import ../tools/typesetting/xmlroff {
|
xmlroff = import ../tools/typesetting/xmlroff {
|
||||||
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
|
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
|
||||||
inherit (gtkLibs) glib pango gtk;
|
inherit (gtkLibs) glib pango gtk;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user