2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2004-04-06 10:47:34 -07:00
|
|
|
|
2007-11-14 15:11:37 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-09-15 05:22:04 -07:00
|
|
|
name = "chmlib-0.40a";
|
2017-06-10 18:43:15 -07:00
|
|
|
|
2019-09-15 05:22:04 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jedwing";
|
|
|
|
repo = "CHMLib";
|
|
|
|
rev = "2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f";
|
|
|
|
sha256 = "1hah0nw0l05npva2r35ywwd0kzyiiz4vamghm6d71h8170iva6m9";
|
2007-11-14 15:11:37 -08:00
|
|
|
};
|
|
|
|
|
2019-09-15 05:22:04 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2007-11-14 15:11:37 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.jedrea.com/chmlib";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl2;
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "A library for dealing with Microsoft ITSS/CHM format files";
|
2019-09-15 05:22:04 -07:00
|
|
|
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux"];
|
2004-04-06 10:47:34 -07:00
|
|
|
};
|
|
|
|
}
|