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