gtk-sharp-beans: init at 2.14.0
This commit is contained in:
parent
50bd9b0193
commit
a347e45c54
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue