* Added gtksourceview and gtksourceview-sharp.

svn path=/nixpkgs/trunk/; revision=2344
This commit is contained in:
Eelco Dolstra
2005-03-08 15:44:23 +00:00
parent 8853b55a2e
commit 19d7e43cf3
8 changed files with 76 additions and 7 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,19 @@
{stdenv, fetchurl, pkgconfig, mono, gtksharp, gtksourceview, monoDLLFixer}:
stdenv.mkDerivation {
name = "gtksourceview-sharp-0.5";
builder = ./builder.sh;
src = fetchurl {
url = http://www.go-mono.com/archive/1.0/gtksourceview-sharp-0.5.tar.gz;
md5 = "b82e767e42a542e185a534048db3078d";
};
patches = [ ./prefix.patch ];
buildInputs = [
pkgconfig mono gtksharp gtksourceview
];
inherit monoDLLFixer;
}