2021-06-21 04:26:40 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-10-23 19:01:07 +01:00
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2021-06-21 04:26:40 +01:00
|
|
|
, glib
|
2020-10-23 19:01:07 +01:00
|
|
|
, gtk3
|
2021-06-21 04:26:40 +01:00
|
|
|
, makeWrapper
|
|
|
|
, pcre2
|
2020-10-23 19:01:07 +01:00
|
|
|
, perl
|
2021-06-21 04:26:40 +01:00
|
|
|
, pkg-config
|
2020-10-23 19:01:07 +01:00
|
|
|
, vte
|
|
|
|
}:
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2010-02-21 11:36:49 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sakura";
|
2021-07-27 23:16:03 +01:00
|
|
|
version = "3.8.3";
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2010-02-21 11:36:49 +00:00
|
|
|
src = fetchurl {
|
2020-10-23 19:01:07 +01:00
|
|
|
url = "https://launchpad.net/${pname}/trunk/${version}/+download/${pname}-${version}.tar.bz2";
|
2021-07-27 23:16:03 +01:00
|
|
|
sha256 = "sha256-UEDc3TjoqjLNZtWGlIZB3VTVQC+31AP0ASQH0fu+U+Q=";
|
2010-02-21 11:36:49 +00:00
|
|
|
};
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2021-06-21 04:26:40 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
makeWrapper
|
|
|
|
perl
|
|
|
|
pkg-config
|
|
|
|
];
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2021-06-21 04:26:40 +01:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
pcre2
|
|
|
|
vte
|
|
|
|
];
|
2017-01-06 10:02:05 +00:00
|
|
|
|
2021-06-21 04:26:40 +01:00
|
|
|
# Set path to gsettings-schemata so sakura knows where to find colorchooser,
|
|
|
|
# fontchooser etc.
|
2020-10-23 19:01:07 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sakura \
|
|
|
|
--suffix XDG_DATA_DIRS : ${gtk3}/share/gsettings-schemas/${gtk3.name}/
|
|
|
|
'';
|
2015-02-09 23:23:50 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-23 19:01:07 +01:00
|
|
|
homepage = "https://www.pleyades.net/david/projects/sakura";
|
2010-02-21 11:36:49 +00:00
|
|
|
description = "A terminal emulator based on GTK and VTE";
|
|
|
|
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.
|
|
|
|
'';
|
2020-10-23 19:01:07 +01:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ astsmtl codyopel AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2010-02-21 11:36:49 +00:00
|
|
|
}
|