mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ed22cfb195
this is needed after c6e51d0369
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ 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";
|
|
homepage = "https://www.midori-browser.org/";
|
|
license = with licenses; [ lgpl21Plus ];
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ raskin ramkromberg ];
|
|
};
|
|
}
|