3
0
Fork 0
forked from mirrors/nixpkgs

* Added x11-ssh-askpass.

svn path=/nixpkgs/trunk/; revision=8529
This commit is contained in:
Eelco Dolstra 2007-04-02 13:46:56 +00:00
parent ad6fa03dfd
commit 83173f1ee9
2 changed files with 23 additions and 0 deletions

View 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];
}

View file

@ -530,6 +530,11 @@ rec {
inherit fetchurl stdenv;
};
x11_ssh_askpass = import ../tools/networking/x11-ssh-askpass {
inherit fetchurl stdenv x11;
inherit (xorg) imake;
};
xmlroff = import ../tools/typesetting/xmlroff {
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
inherit (gtkLibs) glib pango gtk;