about summary refs log tree commit diff
path: root/pkgs/development/libraries/libticonv
diff options
context:
space:
mode:
authorluc65r <lucas@ransan.tk>2020-10-26 22:38:28 +0100
committerLucas Ransan <lucas@ransan.tk>2021-01-24 13:57:07 +0100
commit3e51cd164d21da438c782eaf0c3cd41c5a3898df (patch)
tree7f1d6abe66fa34b52c3996e7a86409e1e6774d23 /pkgs/development/libraries/libticonv
parent79c610283db1fba2ab50515151e7bf09639cd433 (diff)
libticonv: init at 1.1.5
Diffstat (limited to 'pkgs/development/libraries/libticonv')
-rw-r--r--pkgs/development/libraries/libticonv/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libticonv/default.nix b/pkgs/development/libraries/libticonv/default.nix
new file mode 100644
index 0000000000000..0c075406dee2c
--- /dev/null
+++ b/pkgs/development/libraries/libticonv/default.nix
@@ -0,0 +1,38 @@
+{ stdenv
+, lib
+, fetchurl
+, pkg-config
+, autoreconfHook
+, glib
+}:
+
+stdenv.mkDerivation rec {
+  pname = "libticonv";
+  version = "1.1.5";
+  src = fetchurl {
+    url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2";
+    sha256 = "0y080v12bm81wgjm6fnw7q0yg7scphm8hhrls9njcszj7fkscv9i";
+  };
+
+  nativeBuildInputs = [
+    autoreconfHook
+    pkg-config
+  ];
+
+  buildInputs = [
+    glib
+  ];
+
+  configureFlags = [
+    "--enable-iconv"
+  ];
+
+  meta = with lib; {
+    changelog = "http://lpg.ticalc.org/prj_tilp/news.html";
+    description = "This library is part of the TiLP framework";
+    homepage = "http://lpg.ticalc.org/prj_tilp/";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ siraben luc65r ];
+    platforms = with platforms; linux ++ darwin;
+  };
+}