mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, check, dbus, xvfb-run, glib, gtk, gettext, libiconv, json_c, libintl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "girara";
|
|
version = "0.3.6";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://git.pwmt.org/pwmt/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-GPECj0CVxKh+gTfAkkvs13tdiy93il97iqbSTxLQSiM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config gettext check dbus ];
|
|
buildInputs = [ libintl libiconv json_c ];
|
|
propagatedBuildInputs = [ glib gtk ];
|
|
checkInputs = [ xvfb-run ];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
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
|
|
'';
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|