nixpkgs/pkgs/development/libraries/gtksourceview-sharp/default.nix
Eelco Dolstra 9f898a586b * Copy even more files (in particular from losser.st-lab.cs.uu.nl,
can't assume that it will live forever).

svn path=/nixpkgs/trunk/; revision=4624
2006-01-30 16:11:00 +00:00

20 lines
453 B
Nix

{stdenv, fetchurl, pkgconfig, mono, gtksharp, gtksourceview, monoDLLFixer}:
stdenv.mkDerivation {
name = "gtksourceview-sharp-0.6-pre40261";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/gtksourceview-sharp-0.6-pre40261.tar.bz2;
md5 = "8bc26c182bd897f50988e110a9a11f34";
};
patches = [ ./prefix.patch ];
buildInputs = [
pkgconfig mono gtksharp gtksourceview
];
inherit monoDLLFixer;
}