f0a1ab78b4
* Add setupHook for meson/ninja build * libhttpseverywhere: Use meson/ninja setupHooks * jamomacore: Remove superfluous ninja buildInput * Remove obsolete ninja buildPhases These are all handled by ninja's setup hook. * lean2, xcbuild: fix build with ninja setup hook Ninja is a runtime dependency here. However, cmake can generate Ninja build files as well to satisfy the setup hook. * qtwebengine: fix build with ninja setup hook
30 lines
1012 B
Nix
30 lines
1012 B
Nix
{stdenv, fetchurl, gnome3, glib, json_glib, libxml2, libarchive, libsoup, gobjectIntrospection, meson, ninja, pkgconfig, valadoc}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
major = "0.4";
|
|
minor = "5";
|
|
version = "${major}.${minor}";
|
|
|
|
name = "libhttpseverywhere-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libhttpseverywhere/${major}/libhttpseverywhere-${version}.tar.xz";
|
|
sha256 = "07sgcw285rl9wqr5k7srs3fj7fhgrrw6w780jx8wy8jw2bfwlvj2";
|
|
};
|
|
|
|
nativeBuildInputs = [ gnome3.vala valadoc gobjectIntrospection meson ninja pkgconfig ];
|
|
buildInputs = [ glib gnome3.libgee libxml2 json_glib libsoup libarchive ];
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "./httpseverywhere_test";
|
|
|
|
meta = {
|
|
description = "library to use HTTPSEverywhere in desktop applications";
|
|
homepage = https://git.gnome.org/browse/libhttpseverywhere;
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
|
|
};
|
|
}
|