* Added Valknut.
svn path=/nixpkgs/trunk/; revision=3746
This commit is contained in:
parent
8ab397a2ed
commit
c27109efa0
12
pkgs/applications/networking/p2p/valknut/builder.sh
Normal file
12
pkgs/applications/networking/p2p/valknut/builder.sh
Normal 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
|
14
pkgs/applications/networking/p2p/valknut/default.nix
Normal file
14
pkgs/applications/networking/p2p/valknut/default.nix
Normal 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;
|
||||
}
|
10
pkgs/development/libraries/dclib/builder.sh
Normal file
10
pkgs/development/libraries/dclib/builder.sh
Normal 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
|
13
pkgs/development/libraries/dclib/default.nix
Normal file
13
pkgs/development/libraries/dclib/default.nix
Normal 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];
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user