2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono, gtk-sharp-2_0, gio-sharp }:
|
2016-02-09 10:25:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gtk-sharp-beans";
|
2016-02-09 10:25:24 +00:00
|
|
|
version = "2.14.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mono";
|
|
|
|
repo = "gtk-sharp-beans";
|
|
|
|
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2016-02-09 10:25:24 +00:00
|
|
|
sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook which ];
|
2016-09-11 22:24:51 +01:00
|
|
|
buildInputs = [ mono gtk-sharp-2_0 gio-sharp ];
|
2016-02-09 10:25:24 +00:00
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "Binds some API from GTK that isn't in GTK# 2.12.x";
|
2016-02-09 10:25:24 +00:00
|
|
|
platforms = platforms.linux;
|
2018-10-12 20:44:03 +01:00
|
|
|
license = licenses.lgpl21;
|
2016-02-09 10:25:24 +00:00
|
|
|
};
|
|
|
|
}
|