* xdoc
svn path=/nixpkgs/trunk/; revision=1394
This commit is contained in:
parent
acbda3c223
commit
c82e3b72c6
5
pkgs/development/tools/documentation/xdoc/builder.sh
Normal file
5
pkgs/development/tools/documentation/xdoc/builder.sh
Normal file
@ -0,0 +1,5 @@
|
||||
. $stdenv/setup
|
||||
|
||||
configureFlags="--with-aterm=$aterm --with-sglr=$sglr --with-pgen=$pgen
|
||||
--with-pt-support=$ptsupport --with-asf-library=$asflibrary --with-strategoxt=$strategoxt --with-graphviz=$graphviz --with-svn=$subversion"
|
||||
genericBuild
|
13
pkgs/development/tools/documentation/xdoc/default.nix
Normal file
13
pkgs/development/tools/documentation/xdoc/default.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{stdenv, fetchurl, strategoxt, aterm, sdf, subversion, graphviz}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "xdoc-0.1";
|
||||
src = fetchurl {
|
||||
url = http://machina.nl/xdoc/xdoc-0.1.tar.gz;
|
||||
md5 = "6f601254013d5fe3d2fdbd33b827001a";
|
||||
};
|
||||
builder = ./builder.sh;
|
||||
inherit aterm strategoxt subversion graphviz ;
|
||||
inherit (sdf) sglr pgen ptsupport asflibrary;
|
||||
buildInputs = [aterm sdf.pgen strategoxt];
|
||||
}
|
@ -355,6 +355,12 @@ rec {
|
||||
sdf = sdf_22;
|
||||
};
|
||||
|
||||
xdoc = (import ../development/tools/documentation/xdoc) {
|
||||
inherit fetchurl stdenv aterm strategoxt subversion graphviz;
|
||||
sdf = sdf_22;
|
||||
};
|
||||
|
||||
|
||||
#strategoxtsvn = (import ../development/compilers/strategoxt/trunk.nix) {
|
||||
# inherit fetchsvn stdenv autoconf automake libtool which aterm;
|
||||
# sdf = sdf_22;
|
||||
|
@ -33,6 +33,7 @@ let {
|
||||
gcc34
|
||||
aterm
|
||||
strategoxt
|
||||
xdoc
|
||||
ghc
|
||||
helium
|
||||
perl
|
||||
|
Loading…
Reference in New Issue
Block a user