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
49 lines
954 B
Nix
49 lines
954 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
wxGTK32,
|
|
chmlib,
|
|
desktopToDarwinBundle,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xchm";
|
|
version = "1.37";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rzvncj";
|
|
repo = "xCHM";
|
|
rev = version;
|
|
sha256 = "sha256-UMn8ds4nheuYSu0PesxdGoyxyn5AcKq9WByeRUxxx3k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
desktopToDarwinBundle
|
|
];
|
|
|
|
buildInputs = [
|
|
wxGTK32
|
|
chmlib
|
|
];
|
|
|
|
configureFlags = [ "--with-wx-prefix=${wxGTK32}" ];
|
|
|
|
preConfigure = ''
|
|
export LDFLAGS="$LDFLAGS $(${wxGTK32}/bin/wx-config --libs std,aui | sed -e s@-pthread@@)"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Viewer for Microsoft HTML Help files";
|
|
homepage = "https://github.com/rzvncj/xCHM";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "xchm";
|
|
};
|
|
}
|