* Added Valknut.

svn path=/nixpkgs/trunk/; revision=3746
This commit is contained in:
Eelco Dolstra 2005-08-30 07:39:38 +00:00
parent 8ab397a2ed
commit c27109efa0
5 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,12 @@
addInputsHook=addBzip2
addBzip2() {
bzip2=$(type -tP bzip2)
test -n $bzip2 || fail
buildInputs="$(dirname $(dirname $bzip2)) $buildInputs"
}
source $stdenv/setup
export configureFlags="--with-ssl-dir=$openssl --x-libraries=/no-such-dir"
genericBuild

View File

@ -0,0 +1,14 @@
{stdenv, fetchurl, perl, x11, libxml2, libjpeg, libpng, openssl, qt, dclib}:
stdenv.mkDerivation {
name = "valknut-0.3.7";
builder = ./builder.sh;
src = fetchurl {
url = http://download.berlios.de/dcgui/valknut-0.3.7.tar.bz2;
md5 = "848f9b3f25af15c3f1837133ac4b9415";
};
buildInputs = [perl x11 libxml2 libjpeg libpng openssl qt dclib];
inherit openssl;
}

View File

@ -0,0 +1,10 @@
addInputsHook=addBzip2
addBzip2() {
bzip2=$(type -tP bzip2)
test -n $bzip2 || fail
buildInputs="$(dirname $(dirname $bzip2)) $buildInputs"
}
source $stdenv/setup
genericBuild

View File

@ -0,0 +1,13 @@
{stdenv, fetchurl, libxml2, openssl}:
stdenv.mkDerivation {
name = "dclib-0.3.7";
builder = ./builder.sh;
src = fetchurl {
url = http://download.berlios.de/dcgui/dclib-0.3.7.tar.bz2;
md5 = "d35833414534bcac8ce2c8a62ce903a4";
};
buildInputs = [libxml2 openssl];
}

View File

@ -906,6 +906,10 @@ rec {
inherit fetchurl stdenv libtool;
};
dclib = (import ../development/libraries/dclib) {
inherit fetchurl stdenv libxml2 openssl;
};
perlBerkeleyDB = import ../development/perl-modules/BerkeleyDB {
inherit fetchurl perl db4;
};
@ -1279,6 +1283,11 @@ rec {
sslSupport = true;
};
valknut = (import ../applications/networking/p2p/valknut) {
inherit fetchurl stdenv perl x11 libxml2 libjpeg libpng openssl dclib;
qt = qt3;
};
firefox = (import ../applications/networking/browsers/firefox) {
inherit fetchurl stdenv pkgconfig perl zip;
inherit (gtkLibs) gtk;