* Quick start section.

* Updated some packages that are referenced in that section.

svn path=/nixpkgs/trunk/; revision=12139
This commit is contained in:
Eelco Dolstra
2008-06-17 14:19:59 +00:00
parent 579099e9d0
commit d97069da1a
12 changed files with 303 additions and 23 deletions
+15 -5
View File
@@ -1,10 +1,20 @@
{stdenv, fetchurl, perl}:
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "hello-2.1.1";
name = "hello-2.3";
src = fetchurl {
url = mirror://gnu/hello/hello-2.1.1.tar.gz;
md5 = "70c9ccf9fac07f762c24f2df2290784d";
url = mirror://gnu/hello/hello-2.3.tar.bz2;
sha256 = "0c7vijq8y68bpr7g6dh1gny0bff8qq81vnp4ch8pjzvg56wb3js1";
};
meta = {
description = "A program that produces a familiar, friendly greeting";
longDescription = ''
GNU Hello is a program that prints "Hello, world!" when you run it.
It is fully customizable.
'';
homepage = http://www.gnu.org/software/hello/manual/;
license = "GPLv3+";
};
buildInputs = [perl];
}