2012-07-14 14:51:08 +02:00
|
|
|
{ stdenv, fetchurl, perl, gettext, makeWrapper, PerlMagick, YAML
|
2011-07-08 11:30:01 +02:00
|
|
|
, TextMarkdown, URI, HTMLParser, HTMLScrubber, HTMLTemplate, TimeDate
|
|
|
|
, CGISession, CGIFormBuilder, DBFile, LocaleGettext, RpcXML, XMLSimple
|
2012-08-10 18:43:49 +02:00
|
|
|
, YAMLLibYAML, which, HTMLTree, AuthenPassphrase, NetOpenIDConsumer
|
2012-08-10 18:57:57 +02:00
|
|
|
, LWPxParanoidAgent, CryptSSLeay
|
2012-02-07 15:01:05 +01:00
|
|
|
, gitSupport ? false, git ? null
|
2012-07-14 15:47:05 +02:00
|
|
|
, docutilsSupport ? false, python ? null, docutils ? null
|
2012-02-07 15:01:05 +01:00
|
|
|
, monotoneSupport ? false, monotone ? null
|
2012-07-14 14:51:08 +02:00
|
|
|
, bazaarSupport ? false, bazaar ? null
|
2012-07-14 15:47:05 +02:00
|
|
|
, cvsSupport ? false, cvs ? null, cvsps ? null, Filechdir ? null
|
2012-07-14 14:51:08 +02:00
|
|
|
, subversionSupport ? false, subversion ? null
|
|
|
|
, mercurialSupport ? false, mercurial ? null
|
2010-07-09 15:16:00 +02:00
|
|
|
, extraUtils ? []
|
|
|
|
}:
|
|
|
|
|
2012-07-14 15:47:05 +02:00
|
|
|
assert docutilsSupport -> (python != null && docutils != null);
|
2010-07-09 15:16:00 +02:00
|
|
|
assert gitSupport -> (git != null);
|
|
|
|
assert monotoneSupport -> (monotone != null);
|
2012-07-14 14:51:08 +02:00
|
|
|
assert bazaarSupport -> (bazaar != null);
|
2012-07-14 15:47:05 +02:00
|
|
|
assert cvsSupport -> (cvs != null && cvsps != null && Filechdir != null);
|
2012-07-14 14:51:08 +02:00
|
|
|
assert subversionSupport -> (subversion != null);
|
|
|
|
assert mercurialSupport -> (mercurial != null);
|
2009-10-14 23:00:54 +02:00
|
|
|
|
2010-04-29 11:35:09 +02:00
|
|
|
let
|
|
|
|
name = "ikiwiki";
|
2012-09-03 21:31:10 +02:00
|
|
|
version = "3.20120725";
|
2012-07-14 14:51:08 +02:00
|
|
|
|
|
|
|
lib = stdenv.lib;
|
2010-04-29 11:35:09 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${name}-${version}";
|
2009-10-14 23:00:54 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-04-29 11:35:09 +02:00
|
|
|
url = "http://ftp.de.debian.org/debian/pool/main/i/ikiwiki/${name}_${version}.tar.gz";
|
2012-09-03 21:31:10 +02:00
|
|
|
sha256 = "b600096a77b17e4a9e8a9552c4d36e01ed9217a0f8ff8a4f15110cf80e7adfad";
|
2009-10-14 23:00:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl TextMarkdown URI HTMLParser HTMLScrubber HTMLTemplate
|
2010-04-29 11:35:20 +02:00
|
|
|
TimeDate gettext makeWrapper DBFile CGISession CGIFormBuilder LocaleGettext
|
2012-08-10 18:43:49 +02:00
|
|
|
RpcXML XMLSimple PerlMagick YAML YAMLLibYAML which HTMLTree AuthenPassphrase
|
2012-08-10 18:57:57 +02:00
|
|
|
NetOpenIDConsumer LWPxParanoidAgent CryptSSLeay ]
|
2012-07-14 15:47:05 +02:00
|
|
|
++ lib.optionals docutilsSupport [python docutils]
|
2012-07-14 14:51:08 +02:00
|
|
|
++ lib.optionals gitSupport [git]
|
|
|
|
++ lib.optionals monotoneSupport [monotone]
|
|
|
|
++ lib.optionals bazaarSupport [bazaar]
|
|
|
|
++ lib.optionals cvsSupport [cvs cvsps Filechdir]
|
|
|
|
++ lib.optionals subversionSupport [subversion]
|
|
|
|
++ lib.optionals mercurialSupport [mercurial];
|
2010-07-09 15:16:00 +02:00
|
|
|
|
2009-10-14 23:00:54 +02:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i s@/usr/bin/perl@${perl}/bin/perl@ pm_filter mdwn2man
|
|
|
|
sed -i s@/etc/ikiwiki@$out/etc@ Makefile.PL
|
|
|
|
sed -i /ENV{PATH}/d ikiwiki.in
|
2009-10-16 00:08:35 +02:00
|
|
|
# State the gcc dependency, and make the cgi use our wrapper
|
|
|
|
sed -i -e 's@$0@"'$out/bin/ikiwiki'"@' \
|
|
|
|
-e "s@'cc'@'${stdenv.gcc}/bin/gcc'@" IkiWiki/Wrapper.pm
|
2009-10-14 23:00:54 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = "perl Makefile.PL PREFIX=$out";
|
|
|
|
|
|
|
|
postInstall = ''
|
2011-07-08 11:30:01 +02:00
|
|
|
for a in "$out/bin/"*; do
|
2009-10-16 08:39:29 +02:00
|
|
|
wrapProgram $a --suffix PERL5LIB : $PERL5LIB --prefix PATH : ${perl}/bin:$out/bin \
|
2012-07-14 14:51:08 +02:00
|
|
|
${lib.optionalString gitSupport ''--prefix PATH : ${git}/bin \''}
|
|
|
|
${lib.optionalString monotoneSupport ''--prefix PATH : ${monotone}/bin \''}
|
|
|
|
${lib.optionalString bazaarSupport ''--prefix PATH : ${bazaar}/bin \''}
|
|
|
|
${lib.optionalString cvsSupport ''--prefix PATH : ${cvs}/bin \''}
|
|
|
|
${lib.optionalString cvsSupport ''--prefix PATH : ${cvsps}/bin \''}
|
|
|
|
${lib.optionalString subversionSupport ''--prefix PATH : ${subversion}/bin \''}
|
|
|
|
${lib.optionalString mercurialSupport ''--prefix PATH : ${mercurial}/bin \''}
|
2009-10-16 10:38:25 +02:00
|
|
|
${lib.concatMapStrings (x: "--prefix PATH : ${x}/bin ") extraUtils}
|
2009-10-14 23:00:54 +02:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2012-07-27 10:25:06 +02:00
|
|
|
preCheck = ''
|
|
|
|
# Git needs some help figuring this out during test suite run.
|
|
|
|
export EMAIL="nobody@example.org"
|
|
|
|
'';
|
|
|
|
|
2012-07-14 14:51:08 +02:00
|
|
|
checkTarget = "test";
|
|
|
|
doCheck = true;
|
|
|
|
|
2010-04-29 10:53:43 +02:00
|
|
|
meta = {
|
2009-10-14 23:00:54 +02:00
|
|
|
description = "Wiki compiler, storing pages and history in a RCS";
|
2012-07-14 14:51:08 +02:00
|
|
|
homepage = "http://ikiwiki.info/";
|
2009-10-14 23:00:54 +02:00
|
|
|
license = "GPLv2+";
|
2012-07-14 14:51:08 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2009-10-14 23:00:54 +02:00
|
|
|
};
|
|
|
|
}
|