1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/development/libraries/libhttpseverywhere/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

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