nixpkgs/pkgs/applications/networking/browsers/midori/default.nix

60 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv
, fetchurl
, cmake
, ninja
, pkgconfig
, intltool
2019-10-03 03:54:12 +01:00
, vala
, wrapGAppsHook
, gcr
, libpeas
, gtk3
, webkitgtk
, sqlite
, gsettings-desktop-schemas
, libsoup
, glib-networking
, json-glib
, libarchive
}:
stdenv.mkDerivation rec {
2018-12-24 01:54:39 +00:00
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
pkgconfig
2019-10-03 03:54:12 +01:00
vala
wrapGAppsHook
];
buildInputs = [
(libsoup.override { gnomeSupport = true; })
gcr
2018-12-24 01:54:39 +00:00
glib-networking
gsettings-desktop-schemas
gtk3
libpeas
sqlite
webkitgtk
json-glib
libarchive
];
2018-12-24 01:54:39 +00:00
meta = with stdenv.lib; {
description = "Lightweight WebKitGTK web browser";
2018-12-24 01:54:39 +00:00
homepage = https://www.midori-browser.org/;
license = with licenses; [ lgpl21Plus ];
platforms = with platforms; linux;
maintainers = with maintainers; [ raskin ramkromberg ];
};
}