1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 17:25:11 +00:00
nixpkgs/pkgs/applications/terminal-emulators/sakura/default.nix

62 lines
1.6 KiB
Nix
Raw Normal View History

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
stdenv.mkDerivation rec {
pname = "sakura";
2021-07-27 23:16:03 +01:00
version = "3.8.3";
2015-02-09 23:23:50 +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=";
};
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
];
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
meta = with lib; {
2020-10-23 19:01:07 +01:00
homepage = "https://www.pleyades.net/david/projects/sakura";
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;
};
}