2018-03-27 20:35:12 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, glib, gtk, gettext, libiconv, libintl
|
2017-02-15 13:58:19 +00:00
|
|
|
}:
|
2012-05-14 22:43:46 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-23 22:37:53 +00:00
|
|
|
name = "girara-${version}";
|
2018-05-28 13:46:32 +01:00
|
|
|
version = "0.3.0";
|
2012-05-14 22:43:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-27 20:35:12 +01:00
|
|
|
url = "http://pwmt.org/projects/girara/download/${name}.tar.xz";
|
2018-05-28 13:46:32 +01:00
|
|
|
sha256 = "18j1gv8pi4cpndvnap88pcfacdz3lnw6pxmw7dvzm359y1gzllmp";
|
2012-05-14 22:43:46 +01:00
|
|
|
};
|
|
|
|
|
2018-03-27 20:35:12 +01:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
|
|
|
|
buildInputs = [ libintl libiconv ];
|
|
|
|
propagatedBuildInputs = [ glib gtk ];
|
2012-05-14 22:43:46 +01:00
|
|
|
|
2017-02-15 13:58:19 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://pwmt.org/projects/girara/;
|
2012-05-14 22:43:46 +01:00
|
|
|
description = "User interface library";
|
|
|
|
longDescription = ''
|
|
|
|
girara is a library that implements a GTK+ based VIM-like user interface
|
|
|
|
that focuses on simplicity and minimalism.
|
|
|
|
'';
|
2014-11-23 22:37:53 +00:00
|
|
|
license = licenses.zlib;
|
2017-04-21 23:44:19 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2014-11-23 22:37:53 +00:00
|
|
|
maintainers = [ maintainers.garbas ];
|
2012-05-14 22:43:46 +01:00
|
|
|
};
|
|
|
|
}
|