nixpkgs/pkgs/applications/editors/monodoc/default.nix
Eelco Dolstra 8853b55a2e * Generate wrappers to add Mono to PATH and to add Monodoc and GTK# to
the GAC search path.  Unfortunately Mono doesn't yet seem to
  implement the .NET mechanisms for specifying locations for module
  dependencies.

svn path=/nixpkgs/trunk/; revision=2343
2005-03-08 14:39:00 +00:00

18 lines
399 B
Nix

{stdenv, fetchurl, mono, gtksharp, pkgconfig}:
stdenv.mkDerivation {
name = "monodoc-1.0.6";
builder = ./builder.sh;
src = fetchurl {
url = http://www.go-mono.com/archive/1.0.6/monodoc-1.0.6.tar.gz;
md5 = "f2fc27e8e4717d90dc7efa2450625693";
};
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
buildInputs = [mono gtksharp pkgconfig];
inherit gtksharp;
}