2016-09-11 22:24:51 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, gtk2, mono, gtk-sharp-2_0, gnome2}:
|
2014-11-06 00:24:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "gnome-sharp-2.24.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://ftp.gnome.org/pub/gnome/sources/gnome-sharp/2.24/gnome-sharp-2.24.1.tar.gz;
|
|
|
|
sha256 = "0cfvs7hw67fp0wimskqd0gdfx323gv6hi0c5pf59krnmhdrl6z8p";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 mono gtk-sharp-2_0 ]
|
2016-09-11 22:24:51 +01:00
|
|
|
++ (with gnome2; [ libart_lgpl gnome_vfs libgnome libgnomecanvas libgnomeui]);
|
2014-11-06 00:24:59 +00:00
|
|
|
|
|
|
|
patches = [ ./Makefile.in.patch ];
|
|
|
|
|
2015-03-30 23:48:25 +01:00
|
|
|
dontStrip = true;
|
|
|
|
|
2014-11-06 00:24:59 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.mono-project.com/docs/gui/gtksharp/;
|
|
|
|
description = "A .NET language binding for assorted GNOME libraries";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|