nixpkgs/pkgs/development/libraries/chmlib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
578 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
2021-06-22 16:21:29 +03:00
pname = "chmlib";
version = "0.40a";
2019-09-15 15:22:04 +03:00
src = fetchFromGitHub {
owner = "jedwing";
repo = "CHMLib";
rev = "2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f";
sha256 = "1hah0nw0l05npva2r35ywwd0kzyiiz4vamghm6d71h8170iva6m9";
};
2019-09-15 15:22:04 +03:00
nativeBuildInputs = [ autoreconfHook ];
2021-05-23 19:49:16 +03:00
meta = with lib; {
homepage = "http://www.jedrea.com/chmlib";
2021-05-23 19:49:16 +03:00
license = licenses.lgpl2;
description = "A library for dealing with Microsoft ITSS/CHM format files";
2021-05-23 19:49:16 +03:00
platforms = platforms.unix;
};
}