4825906186
Unfortunately, this update does not fix the test suite failure: | Test Summary Report | ------------------- | t/img.t (Wstat: 512 Tests: 31 Failed: 2) | Failed tests: 17-18 | Non-zero exit status: 2 | Files=59, Tests=2273, 22 wallclock secs ( 0.49 usr 0.04 sys + 16.36 cusr 5.45 csys = 22.34 CPU) | Result: FAIL | Failed 1/59 test programs. 2/2273 subtests failed.
92 lines
3.5 KiB
Nix
92 lines
3.5 KiB
Nix
{ stdenv, fetchurl, perl, gettext, makeWrapper, PerlMagick, YAML
|
|
, TextMarkdown, URI, HTMLParser, HTMLScrubber, HTMLTemplate, TimeDate
|
|
, CGISession, CGIFormBuilder, DBFile, LocaleGettext, RpcXML, XMLSimple
|
|
, YAMLLibYAML, which, HTMLTree, AuthenPassphrase, NetOpenIDConsumer
|
|
, LWPxParanoidAgent, CryptSSLeay
|
|
, gitSupport ? false, git ? null
|
|
, docutilsSupport ? false, python ? null, docutils ? null
|
|
, monotoneSupport ? false, monotone ? null
|
|
, bazaarSupport ? false, bazaar ? null
|
|
, cvsSupport ? false, cvs ? null, cvsps ? null, Filechdir ? null
|
|
, subversionSupport ? false, subversion ? null
|
|
, mercurialSupport ? false, mercurial ? null
|
|
, extraUtils ? []
|
|
}:
|
|
|
|
assert docutilsSupport -> (python != null && docutils != null);
|
|
assert gitSupport -> (git != null);
|
|
assert monotoneSupport -> (monotone != null);
|
|
assert bazaarSupport -> (bazaar != null);
|
|
assert cvsSupport -> (cvs != null && cvsps != null && Filechdir != null);
|
|
assert subversionSupport -> (subversion != null);
|
|
assert mercurialSupport -> (mercurial != null);
|
|
|
|
let
|
|
name = "ikiwiki";
|
|
version = "3.20150614";
|
|
|
|
lib = stdenv.lib;
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "${name}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.de.debian.org/debian/pool/main/i/ikiwiki/${name}_${version}.tar.gz";
|
|
sha256 = "0sbs58d7faap1wp2rv7kf3gy3hid1hcpspgqs9wwms2qcki9kwa2";
|
|
};
|
|
|
|
buildInputs = [ perl TextMarkdown URI HTMLParser HTMLScrubber HTMLTemplate
|
|
TimeDate gettext makeWrapper DBFile CGISession CGIFormBuilder LocaleGettext
|
|
RpcXML XMLSimple PerlMagick YAML YAMLLibYAML which HTMLTree AuthenPassphrase
|
|
NetOpenIDConsumer LWPxParanoidAgent CryptSSLeay ]
|
|
++ lib.optionals docutilsSupport [python docutils]
|
|
++ 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];
|
|
|
|
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
|
|
# State the gcc dependency, and make the cgi use our wrapper
|
|
sed -i -e 's@$0@"'$out/bin/ikiwiki'"@' \
|
|
-e "s@'cc'@'${stdenv.cc}/bin/gcc'@" IkiWiki/Wrapper.pm
|
|
'';
|
|
|
|
configurePhase = "perl Makefile.PL PREFIX=$out";
|
|
|
|
postInstall = ''
|
|
for a in "$out/bin/"*; do
|
|
wrapProgram $a --suffix PERL5LIB : $PERL5LIB --prefix PATH : ${perl}/bin:$out/bin \
|
|
${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 \''}
|
|
${lib.concatMapStrings (x: "--prefix PATH : ${x}/bin ") extraUtils}
|
|
done
|
|
'';
|
|
|
|
preCheck = ''
|
|
# Git needs some help figuring this out during test suite run.
|
|
export EMAIL="nobody@example.org"
|
|
'';
|
|
|
|
checkTarget = "test";
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Wiki compiler, storing pages and history in a RCS";
|
|
homepage = "http://ikiwiki.info/";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|