c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
89 lines
1.8 KiB
Nix
89 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, fetchpatch2
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, check
|
|
, dbus
|
|
, xvfb-run
|
|
, glib
|
|
, gtk
|
|
, gettext
|
|
, libiconv
|
|
, json-glib
|
|
, libintl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "girara";
|
|
version = "0.3.9";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://git.pwmt.org/pwmt/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
|
|
hash = "sha256-DoqYykR/N17BHQ90GoLvAYluQ3odWPwUGRTacN6BiWU=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix memory management bug revealed by GLib 2.76.
|
|
# https://git.pwmt.org/pwmt/girara/-/issues/17
|
|
(fetchpatch2 {
|
|
url = "https://git.pwmt.org/pwmt/girara/-/commit/6926cc1234853ccf3010a1e2625aafcf462ed60e.patch";
|
|
hash = "sha256-uayT6ikXtaBPxhZFyskShug3Tbvy2a9qimLRwdiAsic=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
check
|
|
dbus
|
|
glib # for glib-compile-resources
|
|
];
|
|
|
|
buildInputs = [
|
|
libintl
|
|
libiconv
|
|
json-glib
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
glib
|
|
gtk
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
xvfb-run
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
mesonFlags = [
|
|
"-Ddocs=disabled" # docs do not seem to be installed
|
|
(lib.mesonEnable "tests" (stdenv.buildPlatform.canExecute stdenv.hostPlatform))
|
|
];
|
|
|
|
checkPhase = ''
|
|
export NO_AT_BRIDGE=1
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
--config-file=${dbus}/share/dbus-1/session.conf \
|
|
meson test --print-errorlogs
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://git.pwmt.org/pwmt/girara";
|
|
description = "User interface library";
|
|
longDescription = ''
|
|
girara is a library that implements a GTK based VIM-like user interface
|
|
that focuses on simplicity and minimalism.
|
|
'';
|
|
license = licenses.zlib;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [ ];
|
|
};
|
|
}
|