nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{stdenv, fetchurl, pkgconfig, gtk2, mono, gtk-sharp-2_0, gnome2}:
2
3stdenv.mkDerivation {
4 name = "gnome-sharp-2.24.1";
5 src = fetchurl {
6 url = http://ftp.gnome.org/pub/gnome/sources/gnome-sharp/2.24/gnome-sharp-2.24.1.tar.gz;
7 sha256 = "0cfvs7hw67fp0wimskqd0gdfx323gv6hi0c5pf59krnmhdrl6z8p";
8 };
9
10 buildInputs = [ pkgconfig gtk2 mono gtk-sharp-2_0 ]
11 ++ (with gnome2; [ libart_lgpl gnome_vfs libgnome libgnomecanvas libgnomeui]);
12
13 patches = [ ./Makefile.in.patch ];
14
15 dontStrip = true;
16
17 meta = with stdenv.lib; {
18 homepage = http://www.mono-project.com/docs/gui/gtksharp/;
19 description = "A .NET language binding for assorted GNOME libraries";
20 license = licenses.lgpl21;
21 platforms = platforms.linux;
22 maintainers = with maintainers; [ vbgl ];
23 };
24}