2009-09-29 11:01:40 +02:00
|
|
|
{ fetchurl, stdenv, guile, which }:
|
|
|
|
|
2011-02-22 14:40:01 +01:00
|
|
|
let version = "5.11.6"; in
|
2009-09-29 11:01:40 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "autogen-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-02-22 14:40:01 +01:00
|
|
|
url = "mirror://gnu/autogen/rel${version}/autogen-${version}.tar.gz";
|
|
|
|
sha256 = "013xy0f3hv1cw62nwh4r1x46zs9sndydaz31kd6889dp5p0snfkw";
|
2009-09-29 11:01:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ guile which ];
|
|
|
|
|
2011-02-22 14:40:01 +01:00
|
|
|
patchPhase =
|
|
|
|
'' for i in $(find -name \*.in)
|
|
|
|
do
|
|
|
|
sed -i "$i" -e's|/usr/bin/||g'
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2009-09-29 11:01:40 +02:00
|
|
|
# The tests rely on being able to find `libopts.a'.
|
|
|
|
configureFlags = "--enable-static";
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU AutoGen, an automated text and program generation tool";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
AutoGen is a tool designed to simplify the creation and maintenance
|
|
|
|
of programs that contain large amounts of repetitious text. It is
|
|
|
|
especially valuable in programs that have several blocks of text that
|
|
|
|
must be kept synchronized.
|
|
|
|
|
|
|
|
AutoGen can now accept XML files as definition input, in addition to
|
|
|
|
CGI data (for producing dynamic HTML) and traditional AutoGen
|
|
|
|
definitions.
|
|
|
|
|
|
|
|
A common example where this would be useful is in creating and
|
|
|
|
maintaining the code required for processing program options.
|
|
|
|
Processing options requires multiple constructs to be maintained in
|
|
|
|
parallel in different places in your program. Options maintenance
|
|
|
|
needs to be done countless times. So, AutoGen comes with an add-on
|
|
|
|
package named AutoOpts that simplifies the maintenance and
|
|
|
|
documentation of program options.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/autogen/;
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
};
|
|
|
|
}
|