* Moved the fetchutl package to corepkgs.

This commit is contained in:
Eelco Dolstra 2003-07-10 09:11:30 +00:00
parent 9ebd78144a
commit b96239c657
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,9 @@
Function(["url", "hash"],
Package(
[ ("build", Relative("fetchurl/fetchurl.sh"))
, ("url", Var("url"))
, ("hash", Var("hash"))
, ("name", BaseName(Var("url")))
]
)
)

View File

@ -0,0 +1,3 @@
#! /bin/sh
wget "$url" -O "$out"