forked from mirrors/nixpkgs
* Gecko#.
svn path=/nixpkgs/trunk/; revision=2349
This commit is contained in:
parent
30a41232b8
commit
f06889aa3b
11
pkgs/development/libraries/gecko-sharp/builder.sh
Normal file
11
pkgs/development/libraries/gecko-sharp/builder.sh
Normal 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
|
17
pkgs/development/libraries/gecko-sharp/default.nix
Normal file
17
pkgs/development/libraries/gecko-sharp/default.nix
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue