2018-12-12 09:55:06 +00:00
|
|
|
{ stdenv, fetchFromGitHub, qtbase, qtquick1, qmltermwidget
|
|
|
|
, qtquickcontrols, qtgraphicaleffects, qmake }:
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-28 21:30:27 +00:00
|
|
|
version = "1.1.1";
|
2015-01-30 21:48:41 +00:00
|
|
|
name = "cool-retro-term-${version}";
|
|
|
|
|
2018-01-14 17:47:57 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Swordfish90";
|
|
|
|
repo = "cool-retro-term";
|
|
|
|
rev = version;
|
2019-01-28 21:30:27 +00:00
|
|
|
sha256 = "0mird4k88ml6y61hky2jynrjmnxl849fvhsr5jfdlnv0i7r5vwi5";
|
2015-01-30 21:48:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
2015-03-24 15:31:27 +00:00
|
|
|
sed -i -e '/qmltermwidget/d' cool-retro-term.pro
|
2015-01-30 21:48:41 +00:00
|
|
|
'';
|
|
|
|
|
2016-01-01 11:00:11 +00:00
|
|
|
buildInputs = [ qtbase qtquick1 qmltermwidget qtquickcontrols qtgraphicaleffects ];
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2015-01-30 21:48:41 +00:00
|
|
|
|
2016-04-16 20:59:20 +01:00
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
mv $out/usr/share $out/share
|
|
|
|
mv $out/usr/bin $out/bin
|
|
|
|
rmdir $out/usr
|
2018-12-06 15:58:27 +00:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
ln -s $out/bin/cool-retro-term.app/Contents/MacOS/cool-retro-term $out/bin/cool-retro-term
|
2015-01-30 21:48:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2018-10-07 10:20:53 +01:00
|
|
|
homepage = https://github.com/Swordfish90/cool-retro-term;
|
2018-12-12 09:55:06 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2018-12-06 15:58:27 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2015-01-30 21:48:41 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ skeidel ];
|
|
|
|
};
|
|
|
|
}
|