Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
43 lines
853 B
Nix
43 lines
853 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, wxGTK32
|
|
, chmlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xchm";
|
|
version = "1.37";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rzvncj";
|
|
repo = "xCHM";
|
|
rev = version;
|
|
sha256 = "sha256-UMn8ds4nheuYSu0PesxdGoyxyn5AcKq9WByeRUxxx3k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
wxGTK32
|
|
chmlib
|
|
];
|
|
|
|
configureFlags = [ "--with-wx-prefix=${wxGTK32}" ];
|
|
|
|
preConfigure = ''
|
|
export LDFLAGS="$LDFLAGS $(${wxGTK32}/bin/wx-config --libs | sed -e s@-pthread@@) -lwx_gtk3u_aui-3.2"
|
|
'';
|
|
|
|
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.linux;
|
|
mainProgram = "xchm";
|
|
};
|
|
}
|