Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #9898 from robbinch/pkg-zimlib

zimlib: init at 20150710.

+23
+21
pkgs/development/libraries/zimlib/default.nix
··· 1 + { stdenv, fetchgit, automake, autoconf, libtool, lzma }: 2 + 3 + stdenv.mkDerivation { 4 + name = "zimlib"; 5 + version = "20150710"; 6 + src = fetchgit { 7 + url = https://gerrit.wikimedia.org/r/p/openzim.git; 8 + rev = "165eab3e154c60b5b6436d653dc7c90f56cf7456"; 9 + sha256 = "0x0d3rx6zcc8k66nqkacmwdvslrz70h9bliqawzv90ribq3alb0q"; 10 + }; 11 + buildInputs = [ automake autoconf libtool lzma ]; 12 + setSourceRoot = "cd openzim-*/zimlib; export sourceRoot=`pwd`"; 13 + preConfigurePhases = [ "./autogen.sh" ]; 14 + 15 + meta = { 16 + description = "Library for reading and writing ZIM files (file format for storing Web content offline)"; 17 + homepage = http://www.openzim.org/wiki/Zimlib; 18 + license = stdenv.lib.licenses.gpl2; 19 + maintainers = with stdenv.lib.maintainers; [ robbinch ]; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 8416 8416 8417 8417 czmq = callPackage ../development/libraries/czmq { }; 8418 8418 8419 + zimlib = callPackage ../development/libraries/zimlib { }; 8420 + 8419 8421 zita-convolver = callPackage ../development/libraries/audio/zita-convolver { }; 8420 8422 8421 8423 zita-alsa-pcmi = callPackage ../development/libraries/audio/zita-alsa-pcmi { };