* Gecko#.

svn path=/nixpkgs/trunk/; revision=2349
This commit is contained in:
Eelco Dolstra 2005-03-09 15:40:16 +00:00
parent 30a41232b8
commit f06889aa3b
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,11 @@
. $stdenv/setup
genericBuild
# !!! hack
export ALL_INPUTS="$out $pkgs"
find $out -name "*.dll.config" | while read configFile; do
echo "modifying config file $configFile"
$monoDLLFixer "$configFile"
done

View file

@ -0,0 +1,17 @@
{stdenv, fetchurl, pkgconfig, mono, gtksharp, gtk, monoDLLFixer}:
stdenv.mkDerivation {
name = "gecko-sharp-0.5";
builder = ./builder.sh;
src = fetchurl {
url = http://www.go-mono.com/archive/1.0/gecko-sharp-0.5.tar.gz;
md5 = "71e75186b2ee5c644d5dd1560ce27357";
};
buildInputs = [
pkgconfig mono gtksharp gtk
];
inherit monoDLLFixer;
}