gtk-sharp-beans: init at 2.14.0

This commit is contained in:
Al Zohali 2016-02-09 13:25:24 +03:00
parent 50bd9b0193
commit a347e45c54
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono, gtk-sharp, gio-sharp }:
stdenv.mkDerivation rec {
name = "gtk-sharp-beans-${version}";
version = "2.14.0";
src = fetchFromGitHub {
owner = "mono";
repo = "gtk-sharp-beans";
rev = "${version}";
sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1";
};
nativeBuildInputs = [ pkgconfig autoreconfHook which ];
buildInputs = [ mono gtk-sharp gio-sharp ];
dontStrip = true;
meta = with stdenv.lib; {
description = "gtk-sharp-beans binds some API from Gtk+ that isn't in Gtk# 2.12.x";
platforms = platforms.linux;
};
}

View File

@ -7060,6 +7060,8 @@ let
gtk-sharp = gtk-sharp-2_0;
gtk-sharp-beans = callPackage ../development/libraries/gtk-sharp-beans { };
gtkspell = callPackage ../development/libraries/gtkspell { };
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };