summary refs log tree commit diff
path: root/pkgs/development/libraries/zimlib/default.nix
blob: c0b50c490ffbb12349989eead04d88ca7e9492d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchgit, automake, autoconf, libtool, lzma }:

stdenv.mkDerivation {
  name = "zimlib";
  version = "20150710";
  src = fetchgit {
    url = https://gerrit.wikimedia.org/r/p/openzim.git;
    rev = "165eab3e154c60b5b6436d653dc7c90f56cf7456";
    sha256 = "076ixsq4lis0rkk7p049g02bidc7bggl9kf2wzmgmsnx396mqymf";
  };
  buildInputs = [ automake autoconf libtool lzma ];
  setSourceRoot = "cd openzim-*/zimlib; export sourceRoot=`pwd`";
  preConfigurePhases = [ "./autogen.sh" ];

  meta = {
    description = "Library for reading and writing ZIM files (file format for storing Web content offline)";
    homepage =  http://www.openzim.org/wiki/Zimlib;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ robbinch ];
  };
}