nixpkgs/pkgs/development/libraries/libhandy/0.x.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, meson, ninja, pkg-config, gobject-introspection, vala
2020-09-20 19:08:46 +02:00
, gtk-doc, docbook_xsl, docbook_xml_dtd_43
2022-03-16 22:16:40 +01:00
, gtk3, gnome-desktop
2021-05-08 15:45:03 +02:00
, dbus, xvfb-run, libxml2
2020-09-20 19:08:46 +02:00
, hicolor-icon-theme
}:
stdenv.mkDerivation rec {
pname = "libhandy";
version = "0.0.13";
outputs = [ "out" "dev" "devdoc" ];
2020-09-20 19:08:46 +02:00
outputBin = "dev";
src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
repo = pname;
rev = "v${version}";
sha256 = "1y23k623sjkldfrdiwfarpchg5mg58smcy1pkgnwfwca15wm1ra5";
};
nativeBuildInputs = [
meson ninja pkg-config gobject-introspection vala libxml2
2020-09-20 19:08:46 +02:00
gtk-doc docbook_xsl docbook_xml_dtd_43
];
2022-03-16 22:16:40 +01:00
buildInputs = [ gnome-desktop gtk3 libxml2 ];
2021-05-08 15:45:03 +02:00
checkInputs = [ dbus xvfb-run hicolor-icon-theme ];
2020-09-20 19:08:46 +02:00
mesonFlags = [
"-Dgtk_doc=true"
"-Dglade_catalog=disabled"
2020-09-20 19:08:46 +02:00
"-Dintrospection=enabled"
];
doCheck = true;
checkPhase = ''
NO_AT_BRIDGE=1 \
XDG_DATA_DIRS="$XDG_DATA_DIRS:${hicolor-icon-theme}/share" \
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
meson test --print-errorlogs
'';
meta = with lib; {
2020-09-20 19:08:46 +02:00
description = "A library full of GTK widgets for mobile phones";
homepage = "https://source.puri.sm/Librem5/libhandy";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}