nixpkgs/pkgs/development/libraries/gtk-sharp-1/default.nix
Eelco Dolstra acba9240cd nixos.org/tarballs -> tarballs.nixos.org
It's currently the same machine, but tarballs.nixos.org should become
an S3/CloudFront site eventually.
2013-06-25 14:12:16 +02:00

35 lines
680 B
Nix

{ stdenv, fetchurl, pkgconfig, mono
, glib
, pango
, gtk
, GConf ? null
, libglade ? null
, libgtkhtml ? null
, gtkhtml ? null
, libgnomecanvas ? null
, libgnomeui ? null
, libgnomeprint ? null
, libgnomeprintui ? null
, libxml2
, monoDLLFixer
}:
stdenv.mkDerivation {
name = "gtk-sharp-1.0.6";
builder = ./builder.sh;
src = fetchurl {
url = http://tarballs.nixos.org/gtk-sharp-1.0.6.tar.gz;
md5 = "2651d14fe77174ab20b8af53d150ee11";
};
patches = [ ./dllmap-glue.patch ];
buildInputs = [
pkgconfig mono glib pango gtk GConf libglade libgnomecanvas
libgtkhtml libgnomeui libgnomeprint libgnomeprintui gtkhtml libxml2
];
inherit monoDLLFixer;
}