1{ stdenv
2, lib
3, fetchurl
4, pkg-config
5, autoreconfHook
6, glib
7, libarchive
8, libticonv
9}:
10
11stdenv.mkDerivation rec {
12 pname = "libtifiles2";
13 version = "1.1.7";
14 src = fetchurl {
15 url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2";
16 sha256 = "10n9mhlabmaw3ha5ckllxfy6fygs2pmlmj5v6w5v62bvx54kpils";
17 };
18
19 nativeBuildInputs = [
20 autoreconfHook
21 pkg-config
22 ];
23
24 buildInputs = [
25 glib
26 libarchive
27 libticonv
28 ];
29
30 meta = with lib; {
31 changelog = "http://lpg.ticalc.org/prj_tilp/news.html";
32 description = "This library is part of the TiLP framework";
33 homepage = "http://lpg.ticalc.org/prj_tilp/";
34 license = licenses.gpl2Plus;
35 maintainers = with maintainers; [ siraben luc65r ];
36 platforms = with platforms; linux ++ darwin;
37 };
38}