lol
1{ stdenv
2, lib
3, fetchurl
4, pkg-config
5, autoreconfHook
6, glib
7}:
8
9stdenv.mkDerivation rec {
10 pname = "libticonv";
11 version = "1.1.5";
12 src = fetchurl {
13 url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2";
14 sha256 = "0y080v12bm81wgjm6fnw7q0yg7scphm8hhrls9njcszj7fkscv9i";
15 };
16
17 nativeBuildInputs = [
18 autoreconfHook
19 pkg-config
20 ];
21
22 buildInputs = [
23 glib
24 ];
25
26 configureFlags = [
27 "--enable-iconv"
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}