2021-06-21 05:26:40 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-10-23 20:01:07 +02:00
|
|
|
, fetchurl
|
|
|
|
, cmake
|
2021-06-21 05:26:40 +02:00
|
|
|
, glib
|
2020-10-23 20:01:07 +02:00
|
|
|
, gtk3
|
2021-06-21 05:26:40 +02:00
|
|
|
, makeWrapper
|
|
|
|
, pcre2
|
2020-10-23 20:01:07 +02:00
|
|
|
, perl
|
2021-06-21 05:26:40 +02:00
|
|
|
, pkg-config
|
2020-10-23 20:01:07 +02:00
|
|
|
, vte
|
|
|
|
}:
|
2015-02-10 00:23:50 +01:00
|
|
|
|
2010-02-21 12:36:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "sakura";
|
2021-06-21 05:26:40 +02:00
|
|
|
version = "3.8.2";
|
2015-02-10 00:23:50 +01:00
|
|
|
|
2010-02-21 12:36:49 +01:00
|
|
|
src = fetchurl {
|
2020-10-23 20:01:07 +02:00
|
|
|
url = "https://launchpad.net/${pname}/trunk/${version}/+download/${pname}-${version}.tar.bz2";
|
2021-06-21 05:26:40 +02:00
|
|
|
sha256 = "sha256-nd/okZrg4RZzyiKHmuMkVl0Jh7FOlI4dK63/U4/htbk=";
|
2010-02-21 12:36:49 +01:00
|
|
|
};
|
2015-02-10 00:23:50 +01:00
|
|
|
|
2021-06-21 05:26:40 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
makeWrapper
|
|
|
|
perl
|
|
|
|
pkg-config
|
|
|
|
];
|
2015-02-10 00:23:50 +01:00
|
|
|
|
2021-06-21 05:26:40 +02:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
pcre2
|
|
|
|
vte
|
|
|
|
];
|
2017-01-06 11:02:05 +01:00
|
|
|
|
2021-06-21 05:26:40 +02:00
|
|
|
# Set path to gsettings-schemata so sakura knows where to find colorchooser,
|
|
|
|
# fontchooser etc.
|
2020-10-23 20:01:07 +02:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sakura \
|
|
|
|
--suffix XDG_DATA_DIRS : ${gtk3}/share/gsettings-schemas/${gtk3.name}/
|
|
|
|
'';
|
2015-02-10 00:23:50 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-10-23 20:01:07 +02:00
|
|
|
homepage = "https://www.pleyades.net/david/projects/sakura";
|
2010-02-21 12:36:49 +01: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 20:01:07 +02:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ astsmtl codyopel AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2010-02-21 12:36:49 +01:00
|
|
|
}
|