about summary refs log tree commit diff
path: root/pkgs/applications/misc/xchm/default.nix
blob: d9ffe8515db1a76669b9d0f66b2a99aa9087501d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, wxGTK, chmlib}:

stdenv.mkDerivation {
  name = "xchm-1.9";
  src = fetchurl {
    url = mirror://sourceforge/xchm/xchm-1.9.tar.gz;
    md5 = "12e1faf49447c743c5c936636cd8a172";
  };
  buildInputs = [wxGTK chmlib];

  meta = {
    description = "A viewer for Microsoft HTML Help files";
    homepage = http://xchm.sourceforge.net;
  };
}