* 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
+4
View File
@@ -13,4 +13,8 @@ stdenv.mkDerivation {
pkgconfig alsaLib esound libogg libvorbis id3lib pkgconfig alsaLib esound libogg libvorbis id3lib
glib gtk libglade glib gtk libglade
]; ];
meta = {
description = "Beep Media Player, a XMMS fork";
};
} }
+4
View File
@@ -11,4 +11,8 @@ stdenv.mkDerivation {
patches = [./alsa.patch]; patches = [./alsa.patch];
buildInputs = [alsaLib esound libogg libvorbis glib gtk]; buildInputs = [alsaLib esound libogg libvorbis glib gtk];
meta = {
description = "A music player very similar to Winamp";
};
} }
@@ -21,4 +21,8 @@ stdenv.mkDerivation {
(if xawSupport then if xaw3dSupport then Xaw3d else libXaw else null) (if xawSupport then if xaw3dSupport then Xaw3d else libXaw else null)
(if xpmSupport then libXpm else null) (if xpmSupport then libXpm else null)
]; ];
meta = {
description = "All Hail Emacs, the ultimate editor";
};
} }
@@ -14,4 +14,8 @@ stdenv.mkDerivation {
}; };
buildInputs = [pkgconfig gtk libpng]; buildInputs = [pkgconfig gtk libpng];
meta = {
description = "A fast image viewer";
};
} }
@@ -8,4 +8,8 @@ stdenv.mkDerivation {
md5 = "70c9ccf9fac07f762c24f2df2290784d"; md5 = "70c9ccf9fac07f762c24f2df2290784d";
}; };
inherit perl; inherit perl;
meta = {
description = "GNU Hello, a classic computer science tool";
};
} }
@@ -10,4 +10,8 @@ stdenv.mkDerivation {
}; };
buildInputs = [unzip]; buildInputs = [unzip];
meta = {
description = "Stand-alone version of Chatzilla, an IRC client";
};
} }
@@ -41,4 +41,8 @@ stdenv.mkDerivation {
"--enable-system-cairo" "--enable-system-cairo"
] ]
++ (if enableOfficialBranding then ["--enable-official-branding"] else []); ++ (if enableOfficialBranding then ["--enable-official-branding"] else []);
meta = {
description = "Mozilla Thunderbird, a full-featured email client";
};
} }
@@ -22,4 +22,8 @@ stdenv.mkDerivation {
]; ];
inherit spellChecking stdenv; inherit spellChecking stdenv;
meta = {
description = "A GTK+-based Usenet newsreader good at both text and binaries";
};
} }
@@ -7,4 +7,8 @@ stdenv.mkDerivation {
md5 = "9a9a4f84ed5b6258f7ab321713adf20b"; md5 = "9a9a4f84ed5b6258f7ab321713adf20b";
}; };
buildInputs = [ghc zlib ncurses curl]; buildInputs = [ghc zlib ncurses curl];
meta = {
description = "Patch-based version management system";
};
} }
@@ -42,4 +42,8 @@ stdenv.mkDerivation {
"; ";
inherit httpServer pythonBindings javahlBindings; inherit httpServer pythonBindings javahlBindings;
meta = {
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
};
} }
@@ -45,4 +45,8 @@ stdenv.mkDerivation {
# Xrandr. # Xrandr.
# See: http://itdp.de/~itdp/html/mplayer-dev-eng/2005-08/msg00427.html # See: http://itdp.de/~itdp/html/mplayer-dev-eng/2005-08/msg00427.html
patches = [./mplayer-aspect.patch ./mplayer-pivot.patch]; patches = [./mplayer-aspect.patch ./mplayer-pivot.patch];
meta = {
description = "A movie player that supports many video formats";
};
} }
@@ -10,4 +10,8 @@ stdenv.mkDerivation {
propagatedBuildInputs = [readline ncurses]; propagatedBuildInputs = [readline ncurses];
builder = ./builder.sh; builder = ./builder.sh;
inherit gcc; inherit gcc;
meta = {
description = "The Glasgow Haskell Compiler";
};
} }
@@ -6,4 +6,6 @@ stdenv.mkDerivation {
builder = ./builder.sh; builder = ./builder.sh;
inherit xulrunner launcher; inherit xulrunner launcher;
appfile = application + /application.ini; appfile = application + /application.ini;
inherit (application) meta;
} }
@@ -6,4 +6,8 @@ stdenv.mkDerivation {
url = http://www.valgrind.org/downloads/valgrind-3.2.1.tar.bz2; url = http://www.valgrind.org/downloads/valgrind-3.2.1.tar.bz2;
md5 = "9407d33961186814cef0e6ecedfd6318"; md5 = "9407d33961186814cef0e6ecedfd6318";
}; };
meta = {
description = "Award-winning suite of tools for debugging and profiling Linux programs";
};
} }
@@ -9,6 +9,10 @@ stdenv.mkDerivation {
md5 = "c18640c6ec31a169d351e3117ecce3ec"; md5 = "c18640c6ec31a169d351e3117ecce3ec";
}; };
buildInputs = [m4]; buildInputs = [m4];
meta = {
description = "A yacc-compatible parser generator";
};
} // { } // {
glrSupport = true; glrSupport = true;
} }
@@ -13,4 +13,8 @@ stdenv.mkDerivation {
}; };
buildInputs = [yacc]; buildInputs = [yacc];
propagatedBuildInputs = [m4]; propagatedBuildInputs = [m4];
meta = {
description = "A fast lexical analyser generator";
};
} }
+6 -1
View File
@@ -1,7 +1,12 @@
{stdenv, fetchurl, game, paks, mesa, name}: {stdenv, fetchurl, game, paks, mesa, name, description}:
stdenv.mkDerivation { stdenv.mkDerivation {
builder = ./builder.sh; builder = ./builder.sh;
inherit game paks mesa name; inherit game paks mesa name;
mesaSwitch = ../../../build-support/opengl/mesa-switch.sh; mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
meta = {
inherit description;
};
} }
+4
View File
@@ -17,4 +17,8 @@ stdenv.mkDerivation {
--with-store-dir=${storeDir} --localstatedir=${stateDir} --with-store-dir=${storeDir} --localstatedir=${stateDir}
--with-aterm=${aterm} --with-bdb=${db4} --with-bzip2=${bzip2} --with-aterm=${aterm} --with-bdb=${db4} --with-bzip2=${bzip2}
--disable-init-state"; --disable-init-state";
meta = {
description = "The Nix Deployment System";
};
} }
+4
View File
@@ -19,4 +19,8 @@ stdenv.mkDerivation {
patches = [./environment.patch]; patches = [./environment.patch];
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
meta = {
description = "A full-featured (La)TeX distribution";
};
} }
@@ -20,4 +20,8 @@ stdenv.mkDerivation {
inherit perl expat zlib; inherit perl expat zlib;
openssl = if sslSupport then openssl else null; openssl = if sslSupport then openssl else null;
db4 = if db4Support then db4 else null; db4 = if db4Support then db4 else null;
meta = {
description = "Apache HTTPD, the world's most popular web server";
};
} }
@@ -9,4 +9,8 @@ stdenv.mkDerivation {
}; };
buildInputs = [python pygtk]; buildInputs = [python pygtk];
inherit python pygtk makeWrapper; inherit python pygtk makeWrapper;
meta = {
description = "The original client for the BitTorrent peer-to-peer file sharing protocol";
};
} }
+1
View File
@@ -2690,6 +2690,7 @@ rec {
quake3demo = import ../games/quake3/wrapper { quake3demo = import ../games/quake3/wrapper {
name = "quake3-demo"; name = "quake3-demo";
description = "Demo of Quake 3 Arena, a classic first-person shooter";
inherit fetchurl stdenv mesa; inherit fetchurl stdenv mesa;
game = quake3game; game = quake3game;
paks = [quake3demodata]; paks = [quake3demodata];