2003-11-06 17:28:57 +01:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
buildinputs="$x11 $glib"
|
2004-03-09 11:59:55 +01:00
|
|
|
. $stdenv/setup
|
2003-11-06 17:28:57 +01:00
|
|
|
|
2004-03-09 11:59:55 +01:00
|
|
|
tar xvfz $src
|
|
|
|
cd gtk+-*
|
|
|
|
./configure --prefix=$out --x-includes=$x11/include --x-libraries=$x11/lib
|
|
|
|
make
|
|
|
|
make install
|
2003-11-06 17:28:57 +01:00
|
|
|
|
2004-03-09 11:59:55 +01:00
|
|
|
mkdir $out/nix-support
|
|
|
|
echo "$x11 $glib" > $out/nix-support/propagated-build-inputs
|