* Added Valknut.
svn path=/nixpkgs/trunk/; revision=3746
This commit is contained in:
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];
|
||||
}
|
||||
Reference in New Issue
Block a user