2021-01-15 14:21:58 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, mkDerivation, qtbase, qtquick1, qmltermwidget
|
2020-11-13 19:54:56 +01:00
|
|
|
, qtquickcontrols, qtgraphicaleffects, qmake, nixosTests }:
|
2015-01-30 22:48:41 +01:00
|
|
|
|
2019-07-27 06:19:44 +02:00
|
|
|
mkDerivation rec {
|
2019-01-28 22:30:27 +01:00
|
|
|
version = "1.1.1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cool-retro-term";
|
2015-01-30 22:48:41 +01:00
|
|
|
|
2018-01-14 18:47:57 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Swordfish90";
|
|
|
|
repo = "cool-retro-term";
|
|
|
|
rev = version;
|
2019-01-28 22:30:27 +01:00
|
|
|
sha256 = "0mird4k88ml6y61hky2jynrjmnxl849fvhsr5jfdlnv0i7r5vwi5";
|
2015-01-30 22:48:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
2015-03-24 16:31:27 +01:00
|
|
|
sed -i -e '/qmltermwidget/d' cool-retro-term.pro
|
2015-01-30 22:48:41 +01:00
|
|
|
'';
|
|
|
|
|
2016-01-01 12:00:11 +01:00
|
|
|
buildInputs = [ qtbase qtquick1 qmltermwidget qtquickcontrols qtgraphicaleffects ];
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2015-01-30 22:48:41 +01:00
|
|
|
|
2016-04-16 21:59:20 +02:00
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
2015-01-30 22:48:41 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
mv $out/usr/share $out/share
|
|
|
|
mv $out/usr/bin $out/bin
|
|
|
|
rmdir $out/usr
|
2021-01-15 14:21:58 +01:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2018-12-06 16:58:27 +01:00
|
|
|
ln -s $out/bin/cool-retro-term.app/Contents/MacOS/cool-retro-term $out/bin/cool-retro-term
|
2015-01-30 22:48:41 +01:00
|
|
|
'';
|
|
|
|
|
2020-11-13 19:54:56 +01:00
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.cool-retro-term;
|
|
|
|
|
2015-01-30 22:48:41 +01:00
|
|
|
meta = {
|
|
|
|
description = "Terminal emulator which mimics the old cathode display";
|
|
|
|
longDescription = ''
|
|
|
|
cool-retro-term is a terminal emulator which tries to mimic the look and
|
|
|
|
feel of the old cathode tube screens. It has been designed to be
|
|
|
|
eye-candy, customizable, and reasonably lightweight.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/Swordfish90/cool-retro-term";
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
|
|
maintainers = with lib.maintainers; [ skeidel ];
|
2015-01-30 22:48:41 +01:00
|
|
|
};
|
|
|
|
}
|