2016-09-04 06:18:58 +00:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig, gtk3, perl, vte, pcre, glib }:
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2010-02-21 11:36:49 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2011-09-17 20:24:54 +00:00
|
|
|
name = "sakura-${version}";
|
2016-09-04 06:18:58 +00:00
|
|
|
version = "3.3.4";
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2010-02-21 11:36:49 +00:00
|
|
|
src = fetchurl {
|
2011-09-17 20:24:54 +00:00
|
|
|
url = "http://launchpad.net/sakura/trunk/${version}/+download/${name}.tar.bz2";
|
2016-09-04 06:18:58 +00:00
|
|
|
sha256 = "1fnkrkzf2ysav1ljgi4y4w8kvbwiwgmg1462xhizlla8jqa749r7";
|
2010-02-21 11:36:49 +00:00
|
|
|
};
|
2015-02-09 23:23:50 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake perl pkgconfig ];
|
|
|
|
|
2016-09-04 06:18:58 +00:00
|
|
|
buildInputs = [ gtk3 vte pcre glib ];
|
2015-02-09 23:23:50 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-02-21 11:36:49 +00:00
|
|
|
description = "A terminal emulator based on GTK and VTE";
|
2015-02-09 23:23:50 +00:00
|
|
|
homepage = http://www.pleyades.net/david/projects/sakura;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ astsmtl codyopel ];
|
|
|
|
platforms = platforms.linux;
|
2010-02-21 11:36:49 +00:00
|
|
|
longDescription = ''
|
|
|
|
sakura is a terminal emulator based on GTK and VTE. It's a terminal
|
|
|
|
emulator with few dependencies, so you don't need a full GNOME desktop
|
|
|
|
installed to have a decent terminal emulator. Current terminal emulators
|
|
|
|
based on VTE are gnome-terminal, XFCE Terminal, TermIt and a small
|
|
|
|
sample program included in the vte sources. The differences between
|
|
|
|
sakura and the last one are that it uses a notebook to provide several
|
|
|
|
terminals in one window and adds a contextual menu with some basic
|
|
|
|
options. No more no less.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|