summary refs log tree commit diff
path: root/pkgs/development/libraries/chmlib/default.nix
blob: 4f27a133c99eef04e6eb30d1990424e872e91774 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "chmlib-0.39";
  
  src = fetchurl {
    url = "${meta.homepage}/${name}.tar.bz2";
    sha256 = "0hgzw121ffmk79wbpkd0394y5ah99c3i85z6scp958mmkr25sc6j";
  };

  meta = {
    homepage = http://www.jedrea.com/chmlib;
    license = "LGPL";
    description = "A library for dealing with Microsoft ITSS/CHM format files";
  };
}