summary refs log blame commit diff
path: root/pkgs/development/libraries/gtk-sharp-beans/default.nix
blob: 1e3b7d45eddab6e4a5eb1cf1482efbcc0b50c4a7 (plain) (tree)
1
2
3
4
                                                                                              

                         
                            










                                                                    
                                                 



                           
                                                                       
                                
                              

    
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono, gtk-sharp-2_0, gio-sharp }:

stdenv.mkDerivation rec {
  pname = "gtk-sharp-beans";
  version = "2.14.0";

  src = fetchFromGitHub {
    owner = "mono";
    repo = "gtk-sharp-beans";

    rev = "${version}";
    sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1";
  };

  nativeBuildInputs = [ pkgconfig autoreconfHook which ];
  buildInputs = [ mono gtk-sharp-2_0 gio-sharp ];

  dontStrip = true;

  meta = with stdenv.lib; {
    description = "Binds some API from Gtk+ that isn't in Gtk# 2.12.x";
    platforms = platforms.linux;
    license = licenses.lgpl21;
  };
}