Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
738 B
Nix
37 lines
738 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "chmlib";
|
|
version = "0.40a";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jedwing";
|
|
repo = "CHMLib";
|
|
rev = "2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f";
|
|
sha256 = "1hah0nw0l05npva2r35ywwd0kzyiiz4vamghm6d71h8170iva6m9";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
env = {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--enable-examples"
|
|
"--enable-devel"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.jedrea.com/chmlib";
|
|
license = licenses.lgpl2;
|
|
description = "Library for dealing with Microsoft ITSS/CHM format files";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|