nixpkgs/pkgs/applications/misc/xchm/default.nix
Yury G. Kudryashov 98a81beaac meta.homepage added to several packages
svn path=/nixpkgs/branches/stdenv-updates/; revision=10431
2008-01-31 10:41:45 +00:00

15 lines
357 B
Nix

{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;
};
}