11 lines
264 B
Nix
11 lines
264 B
Nix
|
{stdenv, fetchurl, wxGTK, chmlib}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "xchm-0.9.1";
|
||
|
src = fetchurl {
|
||
|
url = http://belnet.dl.sourceforge.net/sourceforge/xchm/xchm-0.9.1.tar.gz;
|
||
|
md5 = "5ba671e09e4c3ac46ffb5ce9d2c985eb";
|
||
|
};
|
||
|
buildInputs = [wxGTK chmlib];
|
||
|
}
|