From e3351fb625c6945c34131ca0d54a05a9db1cd64f Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 19 Sep 2009 22:03:24 +0000 Subject: Add GNU libiconv as a stand-alone package. svn path=/nixpkgs/trunk/; revision=17282 --- pkgs/development/libraries/libiconv/default.nix | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/development/libraries/libiconv/default.nix (limited to 'pkgs/development/libraries/libiconv') diff --git a/pkgs/development/libraries/libiconv/default.nix b/pkgs/development/libraries/libiconv/default.nix new file mode 100644 index 000000000000..459987efa474 --- /dev/null +++ b/pkgs/development/libraries/libiconv/default.nix @@ -0,0 +1,32 @@ +{ fetchurl, stdenv }: + +stdenv.mkDerivation rec { + name = "libiconv-1.13.1"; + + src = fetchurl { + url = "mirror://gnu/libiconv/${name}.tar.gz"; + sha256 = "0jcsjk2g28bq20yh7rvbn8xgq6q42g8dkkac0nfh12b061l638sm"; + }; + + meta = { + description = "GNU libiconv, an iconv(3) implementation"; + + longDescription = '' + Some programs, like mailers and web browsers, must be able to convert + between a given text encoding and the user's encoding. Other programs + internally store strings in Unicode, to facilitate internal processing, + and need to convert between internal string representation (Unicode) + and external string representation (a traditional encoding) when they + are doing I/O. GNU libiconv is a conversion library for both kinds of + applications. + ''; + + homepage = http://www.gnu.org/software/libiconv/; + license = "LGPLv2+"; + + maintainers = [ stdenv.lib.maintainers.ludo ]; + + # This library is not needed on GNU platforms. + platforms = [ "i686-cygwin" "i686-darwin" ]; + }; +} -- cgit 1.4.1