nixpkgs/pkgs/applications/misc/lilyterm/default.nix

36 lines
889 B
Nix
Raw Normal View History

{ stdenv, fetchurl
, pkgconfig
, autoconf, automake, intltool, gettext
, gtk, vte }:
stdenv.mkDerivation rec {
name = "lilyterm-${version}";
version = "0.9.9.4";
src = fetchurl {
url = "http://lilyterm.luna.com.tw/file/${name}.tar.gz";
sha256 = "0x2x59qsxq6d6xg5sd5lxbsbwsdvkwqlk17iw3h4amjg3m1jc9mp";
};
buildInputs = [ pkgconfig autoconf automake intltool gettext gtk vte ];
preConfigure = "sh autogen.sh";
configureFlags = ''
--enable-nls
--enable-safe-mode
'';
2014-09-12 05:19:53 +00:00
meta = with stdenv.lib; {
description = "A fast, lightweight terminal emulator";
longDescription = ''
2014-09-12 05:19:53 +00:00
LilyTerm is a terminal emulator based off of libvte that aims to be fast and lightweight.
'';
homepage = http://lilyterm.luna.com.tw/;
license = licenses.gpl3;
2014-09-12 05:19:53 +00:00
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
};
}