Added gtk-sharp

svn path=/nixpkgs/trunk/; revision=2277
This commit is contained in:
Martin Bravenboer 2005-02-22 20:54:26 +00:00
parent 5ab3aa73c4
commit 3d300e6976

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, pkgconfig, glib, pango, mono, gtk, libxml2}:
stdenv.mkDerivation {
name = "gtk-sharp-1.0.6";
src = fetchurl {
url = http://www.go-mono.com/archive/1.0.6/gtk-sharp-1.0.6.tar.gz;
md5 = "2651d14fe77174ab20b8af53d150ee11";
};
buildInputs = [pkgconfig mono glib pango gtk libxml2];
}