2021-05-08 15:45:03 +02:00
|
|
|
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, check, dbus, xvfb-run, glib, gtk, gettext, libiconv, json_c, libintl
|
2017-02-15 14:58:19 +01:00
|
|
|
}:
|
2012-05-14 23:43:46 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-24 17:01:21 +02:00
|
|
|
pname = "girara";
|
2021-07-20 22:19:38 +02:00
|
|
|
version = "0.3.6";
|
2012-05-14 23:43:46 +02:00
|
|
|
|
2019-06-24 17:01:21 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2012-05-14 23:43:46 +02:00
|
|
|
src = fetchurl {
|
2019-10-06 16:18:42 +02:00
|
|
|
url = "https://git.pwmt.org/pwmt/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
|
2021-07-20 22:19:38 +02:00
|
|
|
sha256 = "sha256-GPECj0CVxKh+gTfAkkvs13tdiy93il97iqbSTxLQSiM=";
|
2012-05-14 23:43:46 +02:00
|
|
|
};
|
|
|
|
|
2021-05-25 09:11:34 +02:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config gettext check dbus ];
|
2019-06-24 17:01:21 +02:00
|
|
|
buildInputs = [ libintl libiconv json_c ];
|
2018-03-27 21:35:12 +02:00
|
|
|
propagatedBuildInputs = [ glib gtk ];
|
2021-05-25 09:11:34 +02:00
|
|
|
checkInputs = [ xvfb-run ];
|
2012-05-14 23:43:46 +02:00
|
|
|
|
2020-08-14 11:22:00 +02:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2019-06-24 17:01:21 +02:00
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Ddocs=disabled" # docs do not seem to be installed
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
export NO_AT_BRIDGE=1
|
|
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
|
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
|
|
|
meson test --print-errorlogs
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-10-06 16:18:42 +02:00
|
|
|
homepage = "https://git.pwmt.org/pwmt/girara";
|
2012-05-14 23:43:46 +02:00
|
|
|
description = "User interface library";
|
|
|
|
longDescription = ''
|
2019-09-04 00:49:40 +02:00
|
|
|
girara is a library that implements a GTK based VIM-like user interface
|
2012-05-14 23:43:46 +02:00
|
|
|
that focuses on simplicity and minimalism.
|
|
|
|
'';
|
2014-11-23 23:37:53 +01:00
|
|
|
license = licenses.zlib;
|
2017-04-22 00:44:19 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2019-07-03 11:27:39 +02:00
|
|
|
maintainers = [ ];
|
2012-05-14 23:43:46 +02:00
|
|
|
};
|
|
|
|
}
|