mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
31 lines
807 B
Nix
31 lines
807 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, chmlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xchm";
|
|
version = "1.32";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rzvncj";
|
|
repo = "xCHM";
|
|
rev = version;
|
|
sha256 = "sha256-Ss8kdfUAMC8v05rdt2SoO6vPyssG5v8gOzdf/v18cdg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ wxGTK30 chmlib ];
|
|
|
|
configureFlags = [ "--with-wx-prefix=${wxGTK30}" ];
|
|
|
|
preConfigure = ''
|
|
export LDFLAGS="$LDFLAGS $(${wxGTK30}/bin/wx-config --libs | sed -e s@-pthread@@) -lwx_gtk2u_aui-3.0"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A viewer for Microsoft HTML Help files";
|
|
homepage = "https://github.com/rzvncj/xCHM";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|