summary refs log tree commit diff
path: root/pkgs/applications/misc/ikiwiki
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-14 21:00:54 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-14 21:00:54 +0000
commita1061c11753eabcf9859fcc78551944ce98ad4ff (patch)
treec7dbf5807fa0e7bd2d05b7a1a5a450211f5cb87c /pkgs/applications/misc/ikiwiki
parente111bb380dcd6c1814f005d2703ea0c69aed0bf3 (diff)
downloadnixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.tar
nixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.tar.gz
nixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.tar.bz2
nixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.tar.lz
nixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.tar.xz
nixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.tar.zst
nixpkgs-a1061c11753eabcf9859fcc78551944ce98ad4ff.zip
Adding the basics for 'ikiwiki'. I did not try how it serves the pages, but
at least "ikiwiki --setup ikiwikipath/etc/auto.setup" works for me with git.

svn path=/nixpkgs/trunk/; revision=17808
Diffstat (limited to 'pkgs/applications/misc/ikiwiki')
-rw-r--r--pkgs/applications/misc/ikiwiki/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/misc/ikiwiki/default.nix b/pkgs/applications/misc/ikiwiki/default.nix
new file mode 100644
index 00000000000..b830bc28247
--- /dev/null
+++ b/pkgs/applications/misc/ikiwiki/default.nix
@@ -0,0 +1,34 @@
+{stdenv, fetchurl, perl, gettext, makeWrapper,
+TextMarkdown, URI, HTMLParser, HTMLScrubber, HTMLTemplate, TimeDate}:
+
+stdenv.mkDerivation {
+  name = "ikiwiki_3.20091009";
+
+  src = fetchurl {
+    url = http://ftp.de.debian.org/debian/pool/main/i/ikiwiki/ikiwiki_3.20091009.tar.gz;
+    sha256 = "1iznyiypsnhga71s31782j3rf52fyvxrcys3nfpcr8yg1a5zadpn";
+  };
+
+  buildInputs = [ perl TextMarkdown URI HTMLParser HTMLScrubber HTMLTemplate
+    TimeDate gettext makeWrapper ];
+
+  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
+  '';
+
+  configurePhase = "perl Makefile.PL PREFIX=$out";
+
+  postInstall = ''
+    for a in $out/bin/*; do
+      wrapProgram $a --suffix PERL5LIB : $PERL5LIB --prefix PATH : ${perl}/bin:$out/bin
+    done
+  '';
+
+  meta = { 
+    description = "Wiki compiler, storing pages and history in a RCS";
+    homepage = http://ikiwiki.info/;
+    license = "GPLv2+";
+  };
+}