Compare commits

...

1 Commits

Author SHA1 Message Date
Eelco Dolstra
4ff1c293d9 * GNU hello package added.
svn path=/nixpkgs/branches/logistics/; revision=397
2003-09-24 09:05:59 +00:00
2 changed files with 19 additions and 0 deletions

9
pkgs/hello/hello-build.sh Executable file
View File

@@ -0,0 +1,9 @@
#! /bin/sh
export PATH=/usr/bin:/bin
tar xvfz $src || exit 1
cd hello-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

10
pkgs/hello/hello.fix Normal file
View File

@@ -0,0 +1,10 @@
Package(
[ ("name", "hello-2.1.1")
, ("build", Relative("hello/hello-build.sh"))
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "http://ftp.gnu.org/gnu/hello/hello-2.1.1.tar.gz")
, ("md5", "70c9ccf9fac07f762c24f2df2290784d")
]))
]
)