2004-04-06 19:47:34 +02:00
|
|
|
{stdenv, fetchurl, wxGTK, chmlib}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xchm-0.9.1";
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/xchm-0.9.1.tar.gz;
|
2004-04-06 19:47:34 +02:00
|
|
|
md5 = "5ba671e09e4c3ac46ffb5ce9d2c985eb";
|
|
|
|
};
|
|
|
|
buildInputs = [wxGTK chmlib];
|
|
|
|
}
|