python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libticonv / default.nix
blob0c075406dee2cc4884bc78a764c8da9d8aee6af1
1 { stdenv
2 , lib
3 , fetchurl
4 , pkg-config
5 , autoreconfHook
6 , glib
7 }:
9 stdenv.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   };
17   nativeBuildInputs = [
18     autoreconfHook
19     pkg-config
20   ];
22   buildInputs = [
23     glib
24   ];
26   configureFlags = [
27     "--enable-iconv"
28   ];
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   };