* Added a bunch of descriptions.

svn path=/nixpkgs/trunk/; revision=6705
This commit is contained in:
Eelco Dolstra 2006-10-11 16:45:55 +00:00
parent 7d16a56b6f
commit 6006d61835
22 changed files with 85 additions and 1 deletions

View File

@ -13,4 +13,8 @@ stdenv.mkDerivation {
pkgconfig alsaLib esound libogg libvorbis id3lib
glib gtk libglade
];
meta = {
description = "Beep Media Player, a XMMS fork";
};
}

View File

@ -11,4 +11,8 @@ stdenv.mkDerivation {
patches = [./alsa.patch];
buildInputs = [alsaLib esound libogg libvorbis glib gtk];
meta = {
description = "A music player very similar to Winamp";
};
}

View File

@ -21,4 +21,8 @@ stdenv.mkDerivation {
(if xawSupport then if xaw3dSupport then Xaw3d else libXaw else null)
(if xpmSupport then libXpm else null)
];
meta = {
description = "All Hail Emacs, the ultimate editor";
};
}

View File

@ -14,4 +14,8 @@ stdenv.mkDerivation {
};
buildInputs = [pkgconfig gtk libpng];
meta = {
description = "A fast image viewer";
};
}

View File

@ -8,4 +8,8 @@ stdenv.mkDerivation {
md5 = "70c9ccf9fac07f762c24f2df2290784d";
};
inherit perl;
meta = {
description = "GNU Hello, a classic computer science tool";
};
}

View File

@ -10,4 +10,8 @@ stdenv.mkDerivation {
};
buildInputs = [unzip];
meta = {
description = "Stand-alone version of Chatzilla, an IRC client";
};
}

View File

@ -41,4 +41,8 @@ stdenv.mkDerivation {
"--enable-system-cairo"
]
++ (if enableOfficialBranding then ["--enable-official-branding"] else []);
meta = {
description = "Mozilla Thunderbird, a full-featured email client";
};
}

View File

@ -22,4 +22,8 @@ stdenv.mkDerivation {
];
inherit spellChecking stdenv;
meta = {
description = "A GTK+-based Usenet newsreader good at both text and binaries";
};
}

View File

@ -7,4 +7,8 @@ stdenv.mkDerivation {
md5 = "9a9a4f84ed5b6258f7ab321713adf20b";
};
buildInputs = [ghc zlib ncurses curl];
meta = {
description = "Patch-based version management system";
};
}

View File

@ -42,4 +42,8 @@ stdenv.mkDerivation {
";
inherit httpServer pythonBindings javahlBindings;
meta = {
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
};
}

View File

@ -45,4 +45,8 @@ stdenv.mkDerivation {
# Xrandr.
# See: http://itdp.de/~itdp/html/mplayer-dev-eng/2005-08/msg00427.html
patches = [./mplayer-aspect.patch ./mplayer-pivot.patch];
meta = {
description = "A movie player that supports many video formats";
};
}

View File

@ -10,4 +10,8 @@ stdenv.mkDerivation {
propagatedBuildInputs = [readline ncurses];
builder = ./builder.sh;
inherit gcc;
meta = {
description = "The Glasgow Haskell Compiler";
};
}

View File

@ -6,4 +6,6 @@ stdenv.mkDerivation {
builder = ./builder.sh;
inherit xulrunner launcher;
appfile = application + /application.ini;
inherit (application) meta;
}

View File

@ -6,4 +6,8 @@ stdenv.mkDerivation {
url = http://www.valgrind.org/downloads/valgrind-3.2.1.tar.bz2;
md5 = "9407d33961186814cef0e6ecedfd6318";
};
meta = {
description = "Award-winning suite of tools for debugging and profiling Linux programs";
};
}

View File

@ -9,6 +9,10 @@ stdenv.mkDerivation {
md5 = "c18640c6ec31a169d351e3117ecce3ec";
};
buildInputs = [m4];
meta = {
description = "A yacc-compatible parser generator";
};
} // {
glrSupport = true;
}

View File

@ -13,4 +13,8 @@ stdenv.mkDerivation {
};
buildInputs = [yacc];
propagatedBuildInputs = [m4];
meta = {
description = "A fast lexical analyser generator";
};
}

View File

@ -1,7 +1,12 @@
{stdenv, fetchurl, game, paks, mesa, name}:
{stdenv, fetchurl, game, paks, mesa, name, description}:
stdenv.mkDerivation {
builder = ./builder.sh;
inherit game paks mesa name;
mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
meta = {
inherit description;
};
}

View File

@ -17,4 +17,8 @@ stdenv.mkDerivation {
--with-store-dir=${storeDir} --localstatedir=${stateDir}
--with-aterm=${aterm} --with-bdb=${db4} --with-bzip2=${bzip2}
--disable-init-state";
meta = {
description = "The Nix Deployment System";
};
}

View File

@ -19,4 +19,8 @@ stdenv.mkDerivation {
patches = [./environment.patch];
setupHook = ./setup-hook.sh;
meta = {
description = "A full-featured (La)TeX distribution";
};
}

View File

@ -20,4 +20,8 @@ stdenv.mkDerivation {
inherit perl expat zlib;
openssl = if sslSupport then openssl else null;
db4 = if db4Support then db4 else null;
meta = {
description = "Apache HTTPD, the world's most popular web server";
};
}

View File

@ -9,4 +9,8 @@ stdenv.mkDerivation {
};
buildInputs = [python pygtk];
inherit python pygtk makeWrapper;
meta = {
description = "The original client for the BitTorrent peer-to-peer file sharing protocol";
};
}

View File

@ -2690,6 +2690,7 @@ rec {
quake3demo = import ../games/quake3/wrapper {
name = "quake3-demo";
description = "Demo of Quake 3 Arena, a classic first-person shooter";
inherit fetchurl stdenv mesa;
game = quake3game;
paks = [quake3demodata];