* Eclipse: add a wrapper in $out/bin.

svn path=/nixpkgs/trunk/; revision=3946
This commit is contained in:
Eelco Dolstra 2005-09-26 14:10:04 +00:00
parent ffd49c15df
commit ba6556058d
3 changed files with 9 additions and 7 deletions

View File

@ -1,7 +1,8 @@
set -e
source $stdenv/setup
source $makeWrapper
. $stdenv/setup
tar zxvf $src
mkdir $out
unpackFile $src
ensureDir $out
mv eclipse $out/
makeWrapper $out/eclipse/eclipse $out/bin/eclipse

View File

@ -1,4 +1,4 @@
{fetchurl, stdenv}:
{fetchurl, stdenv, makeWrapper}:
let {
body =
@ -6,6 +6,7 @@ let {
name = "eclipse-sdk-3.1";
builder = ./builder.sh;
src = bindist;
inherit makeWrapper;
};
bindist =

View File

@ -1545,7 +1545,7 @@ rec {
};
eclipse = (import ../applications/editors/eclipse) {
inherit fetchurl stdenv;
inherit fetchurl stdenv makeWrapper;
};
monodevelop = (import ../applications/editors/monodevelop) {