2020-11-13 18:54:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, python3, efl, nixosTests }:
|
2016-08-22 23:44:27 +01:00
|
|
|
|
2014-09-15 20:54:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-25 12:54:26 +01:00
|
|
|
pname = "terminology";
|
2022-01-03 15:47:58 +00:00
|
|
|
version = "1.12.1";
|
2016-08-22 23:44:27 +01:00
|
|
|
|
2014-09-15 20:54:02 +01:00
|
|
|
src = fetchurl {
|
2021-10-19 16:49:44 +01:00
|
|
|
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
2022-01-03 15:47:58 +00:00
|
|
|
sha256 = "1aasddf2343qj798b5s8qwif3lxj4pyjax6fa9sfi6if9icdkkpq";
|
2014-09-15 20:54:02 +01:00
|
|
|
};
|
2016-08-22 23:44:27 +01:00
|
|
|
|
2017-09-07 13:00:19 +01:00
|
|
|
nativeBuildInputs = [
|
2018-05-03 01:09:14 +01:00
|
|
|
meson
|
|
|
|
ninja
|
2020-08-12 00:14:50 +01:00
|
|
|
pkg-config
|
2021-01-28 19:17:08 +00:00
|
|
|
python3
|
2017-09-07 13:00:19 +01:00
|
|
|
];
|
2016-08-22 23:44:27 +01:00
|
|
|
|
2017-09-07 13:00:19 +01:00
|
|
|
buildInputs = [
|
|
|
|
efl
|
2020-08-28 20:21:34 +01:00
|
|
|
];
|
|
|
|
|
2021-01-28 19:17:08 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs data/colorschemes/*.py
|
|
|
|
'';
|
|
|
|
|
2020-11-13 18:54:56 +00:00
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.terminology;
|
|
|
|
|
2021-10-13 14:39:11 +01:00
|
|
|
meta = with lib; {
|
2018-05-03 01:09:14 +01:00
|
|
|
description = "Powerful terminal emulator based on EFL";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.enlightenment.org/about-terminology";
|
2021-10-13 14:39:11 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ matejc tstrobel ftrvxmtrx romildo ];
|
2014-09-15 20:54:02 +01:00
|
|
|
};
|
|
|
|
}
|