summary refs log blame commit diff
path: root/pkgs/development/libraries/gnome-sharp/default.nix
blob: fa762c3a02e88e7971f447684a43d7b0036d2a39 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                 
 
                         
                        




                         
                  
                                                                    

    
                                                                    
                                           
                                                                                 
 

                                      


                                                  
 

                   
                           
                                                               





                                                                         
{ stdenv
, lib
, fetchFromGitHub
, pkgconfig
, gtk2
, mono
, gtk-sharp-2_0
, gnome2
, autoconf
, automake
, libtool
, which
}:

stdenv.mkDerivation rec {
  pname = "gnome-sharp";
  version = "2.24.4";

  src = fetchFromGitHub {
    owner = "mono";
    repo = "gnome-sharp";
    rev = version;
    sha256 = "15jsm6n0sih0nf3w8vmvik97q7l3imz4vkdzmp9k7bssiz4glj1z";
  };

  nativeBuildInputs = [ pkgconfig autoconf automake libtool which ];
  buildInputs = [ gtk2 mono gtk-sharp-2_0 ]
  ++ (with gnome2; [ libart_lgpl gnome_vfs libgnome libgnomecanvas libgnomeui ]);

  patches = [ ./fix-mono-path.patch ];

  preConfigure = ''
    ./bootstrap-${lib.versions.majorMinor version}
  '';

  dontStrip = true;

  meta = with stdenv.lib; {
    homepage = https://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 ];
  };
}