nixpkgs/pkgs/applications/misc/xchm/default.nix
Eelco Dolstra 368c196a62 * More descriptions.
svn path=/nixpkgs/trunk/; revision=6709
2006-10-12 10:53:16 +00:00

15 lines
338 B
Nix

{stdenv, fetchurl, wxGTK, chmlib}:
stdenv.mkDerivation {
name = "xchm-1.9";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/xchm/xchm-1.9.tar.gz;
md5 = "12e1faf49447c743c5c936636cd8a172";
};
buildInputs = [wxGTK chmlib];
meta = {
description = "A viewer for Microsoft HTML Help files";
};
}