12b6909832
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/girara/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.3.0 with grep in /nix/store/sd2h3v53hxkijrlc7xahlrjpa80vrbb7-girara-0.3.0 - directory tree listing: https://gist.github.com/9ae2cdb1a49b9bd9d21fae478768a961 - du listing: https://gist.github.com/f505b0541763899d6ef06322b8258191
28 lines
878 B
Nix
28 lines
878 B
Nix
{ stdenv, fetchurl, meson, ninja, pkgconfig, glib, gtk, gettext, libiconv, libintl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "girara-${version}";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pwmt.org/projects/girara/download/${name}.tar.xz";
|
|
sha256 = "18j1gv8pi4cpndvnap88pcfacdz3lnw6pxmw7dvzm359y1gzllmp";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
|
|
buildInputs = [ libintl libiconv ];
|
|
propagatedBuildInputs = [ glib gtk ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://pwmt.org/projects/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 = [ maintainers.garbas ];
|
|
};
|
|
}
|