nixpkgs/pkgs/development/libraries/libhttpseverywhere/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2018-03-13 18:50:04 +01:00
{ stdenv, fetchurl, pkgconfig, meson, ninja, makeFontsConf
, gnome3, glib, json-glib, libarchive, libsoup, gobjectIntrospection }:
2016-10-10 20:39:10 +02:00
2018-03-03 04:03:21 +01:00
let
pname = "libhttpseverywhere";
2018-03-13 02:03:18 +01:00
version = "0.8.2";
2018-03-03 04:03:21 +01:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
2016-10-10 20:39:10 +02:00
src = fetchurl {
2018-03-03 04:03:21 +01:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-13 02:03:18 +01:00
sha256 = "0vcnimlfcscyvjbh845xbnjb9qc8x0mliaqz2gczxxpakxrbl3gh";
2016-10-10 20:39:10 +02:00
};
2018-03-13 18:50:04 +01:00
nativeBuildInputs = [ gnome3.vala gobjectIntrospection meson ninja pkgconfig ];
buildInputs = [ glib gnome3.libgee json-glib libsoup libarchive ];
2017-12-29 13:49:56 +01:00
2018-03-03 04:03:21 +01:00
mesonFlags = [ "-Denable_valadoc=true" ];
2016-10-10 20:39:10 +02:00
2016-10-24 17:13:16 +02:00
doCheck = true;
checkPhase = "(cd test && ./httpseverywhere_test)";
2016-10-24 17:13:16 +02:00
2018-03-13 18:50:04 +01:00
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
2017-12-29 13:49:56 +01:00
outputs = [ "out" "devdoc" ];
2018-03-03 04:03:21 +01:00
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;
2016-10-10 20:39:10 +02:00
};
}