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

stdenv.mkDerivation {
  name = "xchm-0.9.1";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/xchm-0.9.1.tar.gz;
    md5 = "5ba671e09e4c3ac46ffb5ce9d2c985eb";
  };
  buildInputs = [wxGTK chmlib];
}