1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{ lib, stdenv
, fetchurl
, cmake
, ninja
, pkg-config
, intltool
, vala
, wrapGAppsHook
, gcr
, libpeas
, gtk3
, webkitgtk
, sqlite
, gsettings-desktop-schemas
, libsoup
, glib-networking
, json-glib
, libarchive
}:
stdenv.mkDerivation rec {
pname = "midori";
version = "9.0";
src = fetchurl {
url = "https://github.com/midori-browser/core/releases/download/v${version}/midori-v${version}.tar.gz";
sha256 = "05i04qa83dnarmgkx4xsk6fga5lw1lmslh4rb3vhyyy4ala562jy";
};
nativeBuildInputs = [
cmake
intltool
ninja
pkg-config
vala
wrapGAppsHook
];
buildInputs = [
(libsoup.override { gnomeSupport = true; })
gcr
glib-networking
gsettings-desktop-schemas
gtk3
libpeas
sqlite
webkitgtk
json-glib
libarchive
];
passthru = {
inherit gtk3;
};
meta = with lib; {
description = "Lightweight WebKitGTK web browser";
mainProgram = "midori";
homepage = "https://www.midori-browser.org/";
license = with licenses; [ lgpl21Plus ];
platforms = with platforms; linux;
maintainers = with maintainers; [ raskin ramkromberg ];
};
}
|