From 6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 3 Nov 2008 10:23:33 +0000 Subject: [PATCH] GNU Libtool 1.5.x: Add `meta' attribute. svn path=/nixpkgs/trunk/; revision=13178 --- .../development/tools/misc/libtool/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/development/tools/misc/libtool/default.nix b/pkgs/development/tools/misc/libtool/default.nix index 23b1b3921dac..78cd15e04bdb 100644 --- a/pkgs/development/tools/misc/libtool/default.nix +++ b/pkgs/development/tools/misc/libtool/default.nix @@ -13,4 +13,22 @@ stdenv.mkDerivation rec { # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the # "fixed" path in generated files! dontPatchShebangs = true; + + meta = { + description = "GNU Libtool, a generic library support script"; + + longDescription = '' + GNU libtool is a generic library support script. Libtool hides + the complexity of using shared libraries behind a consistent, + portable interface. + + To use libtool, add the new generic library building commands to + your Makefile, Makefile.in, or Makefile.am. See the + documentation for details. + ''; + + homepage = http://www.gnu.org/software/libtool/; + + license = "GPLv2+"; + }; }