linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / chmlib / default.nix
blob8971acc7eddf52b02cbbbe916697f3fc16da037a
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   name = "chmlib-0.40a";
6   src = fetchFromGitHub {
7     owner = "jedwing";
8     repo = "CHMLib";
9     rev = "2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f";
10     sha256 = "1hah0nw0l05npva2r35ywwd0kzyiiz4vamghm6d71h8170iva6m9";
11   };
13   nativeBuildInputs = [ autoreconfHook ];
15   meta = {
16     homepage = "http://www.jedrea.com/chmlib";
17     license = lib.licenses.lgpl2;
18     description = "A library for dealing with Microsoft ITSS/CHM format files";
19     platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux"];
20   };