* 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,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];
}