42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, meson, ninja, makeFontsConf
|
|
, gnome3, glib, json-glib, libarchive, libsoup, gobjectIntrospection }:
|
|
|
|
let
|
|
pname = "libhttpseverywhere";
|
|
version = "0.8.2";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "0vcnimlfcscyvjbh845xbnjb9qc8x0mliaqz2gczxxpakxrbl3gh";
|
|
};
|
|
|
|
nativeBuildInputs = [ gnome3.vala gobjectIntrospection meson ninja pkgconfig ];
|
|
buildInputs = [ glib gnome3.libgee json-glib libsoup libarchive ];
|
|
|
|
mesonFlags = [ "-Denable_valadoc=true" ];
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "(cd test && ./httpseverywhere_test)";
|
|
|
|
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library to use HTTPSEverywhere in desktop applications";
|
|
homepage = https://git.gnome.org/browse/libhttpseverywhere;
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ sternenseemann ] ++ gnome3.maintainers;
|
|
};
|
|
}
|