webkit2-sharp: init at master

This commit is contained in:
Kevin Cox 2020-08-31 18:14:37 -04:00
parent b609ed3fb6
commit 5a3e36cbd3
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,49 @@
{
stdenv,
autoreconfHook,
fetchFromGitHub,
gtk-sharp-3_0,
lib,
libxslt,
mono,
pkg-config,
webkitgtk,
}:
stdenv.mkDerivation rec {
pname = "webkit2-sharp";
version = "a59fd76dd730432c76b12ee6347ea66567107ab9";
src = fetchFromGitHub {
owner = "hbons";
repo = "webkit2-sharp";
rev = version;
sha256 = "sha256:0a7vx81zvzn2wq4q2mqrxvlps1mqk28lm1gpfndqryxm4iiw28vc";
};
nativeBuildInputs = [
autoreconfHook
libxslt
mono
pkg-config
];
buildInputs = [
gtk-sharp-3_0
webkitgtk
];
ac_cv_path_MONODOCER = "no";
installFlagsArray = ["GAPIXMLDIR=/tmp/gapixml"];
passthru = {
inherit webkitgtk;
};
meta = {
description = "C# bindings for WebKit 2 with GTK+ 3";
homepage = "https://github.com/hbons/webkit2-sharp";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kevincox ];
};
}

View file

@ -27350,6 +27350,8 @@ in
webfs = callPackage ../servers/http/webfs { };
webkit2-sharp = callPackage ../development/libraries/webkit2-sharp { };
websocketd = callPackage ../applications/networking/websocketd { };
wikicurses = callPackage ../applications/misc/wikicurses {