libhttpseverywhere: 0.4.5 -> 0.6.5
This commit is contained in:
parent
52c707c84d
commit
019c631840
|
@ -1,7 +1,8 @@
|
||||||
{stdenv, fetchurl, gnome3, glib, json_glib, libxml2, libarchive, libsoup, gobjectIntrospection, meson, ninja, pkgconfig, valadoc}:
|
{ stdenv, fetchurl, pkgconfig, meson, ninja, valadoc
|
||||||
|
, gnome3, glib, json_glib, libarchive, libsoup, gobjectIntrospection }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
major = "0.4";
|
major = "0.6";
|
||||||
minor = "5";
|
minor = "5";
|
||||||
version = "${major}.${minor}";
|
version = "${major}.${minor}";
|
||||||
|
|
||||||
|
@ -9,16 +10,20 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/libhttpseverywhere/${major}/libhttpseverywhere-${version}.tar.xz";
|
url = "mirror://gnome/sources/libhttpseverywhere/${major}/libhttpseverywhere-${version}.tar.xz";
|
||||||
sha256 = "07sgcw285rl9wqr5k7srs3fj7fhgrrw6w780jx8wy8jw2bfwlvj2";
|
sha256 = "0ksf6vqjyjii29dvy5147dmgqlqsq4d70xxai0p2prkx4jrwgj3z";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ gnome3.vala valadoc gobjectIntrospection meson ninja pkgconfig ];
|
nativeBuildInputs = [ gnome3.vala gobjectIntrospection meson ninja pkgconfig valadoc ];
|
||||||
buildInputs = [ glib gnome3.libgee libxml2 json_glib libsoup libarchive ];
|
buildInputs = [ glib gnome3.libgee json_glib libsoup libarchive ];
|
||||||
|
|
||||||
|
mesonFlags = "-Denable_valadoc=true";
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
checkPhase = "./httpseverywhere_test";
|
checkPhase = "./httpseverywhere_test";
|
||||||
|
|
||||||
|
outputs = [ "out" "devdoc" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "library to use HTTPSEverywhere in desktop applications";
|
description = "library to use HTTPSEverywhere in desktop applications";
|
||||||
homepage = https://git.gnome.org/browse/libhttpseverywhere;
|
homepage = https://git.gnome.org/browse/libhttpseverywhere;
|
||||||
|
|
Loading…
Reference in New Issue