2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoconf, automake, which, pkg-config, mono, glib, gtk-sharp-2_0 }:
|
2016-02-09 02:20:55 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gio-sharp";
|
2016-02-09 02:20:55 -08:00
|
|
|
version = "0.3";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mono";
|
|
|
|
repo = "gio-sharp";
|
|
|
|
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2016-02-09 02:20:55 -08:00
|
|
|
sha256 = "13pc529pjabj7lq23dbndc26ssmg5wkhc7lfvwapm87j711m0zig";
|
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config autoconf automake which ];
|
2020-06-14 02:56:33 -07:00
|
|
|
buildInputs = [ mono glib gtk-sharp-2_0 ];
|
2016-02-09 02:20:55 -08:00
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
./autogen-2.22.sh
|
|
|
|
'';
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2016-02-09 02:20:55 -08:00
|
|
|
description = "GIO API bindings";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/mono/gio-sharp";
|
2018-08-20 11:04:06 -07:00
|
|
|
license = licenses.mit;
|
2016-02-09 02:20:55 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|