summary refs log tree commit diff
path: root/pkgs/development/tools/misc/libtool
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-11-03 10:23:33 +0000
committerLudovic Courtès <ludo@gnu.org>2008-11-03 10:23:33 +0000
commit6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6 (patch)
tree1847e82557ab800a25f37421908354564c8ce51f /pkgs/development/tools/misc/libtool
parentfccfff91dd5fff2b2fe7e35e5700dfa9c48e0eec (diff)
downloadnixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.tar
nixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.tar.gz
nixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.tar.bz2
nixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.tar.lz
nixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.tar.xz
nixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.tar.zst
nixpkgs-6e9e3c0cc65ba9fa2e16f7a40b422fc31eab56e6.zip
GNU Libtool 1.5.x: Add `meta' attribute.
svn path=/nixpkgs/trunk/; revision=13178
Diffstat (limited to 'pkgs/development/tools/misc/libtool')
-rw-r--r--pkgs/development/tools/misc/libtool/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/libtool/default.nix b/pkgs/development/tools/misc/libtool/default.nix
index 23b1b3921da..78cd15e04bd 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+";
+  };
 }