2018-01-14 17:47:57 +00:00
|
|
|
{ stdenv, fetchFromGitHub, qtbase, qtquick1, qmltermwidget,
|
2017-06-02 16:40:19 +01:00
|
|
|
qtquickcontrols, qtgraphicaleffects, qmake }:
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-14 17:47:57 +00:00
|
|
|
version = "1.0.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;
|
|
|
|
sha256 = "1ah54crqv13xsg9cvlwmgyhz90xjjy3vy8pbn9i0vc0ljmpgkqd5";
|
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
|
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
2015-04-21 17:05:19 +01:00
|
|
|
license = with stdenv.lib.licenses; [ gpl2 gpl3 ];
|
2015-01-30 21:48:41 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ skeidel ];
|
|
|
|
};
|
|
|
|
}
|