2015-10-14 15:44:10 +01:00
|
|
|
{ stdenv, fetchgit, makeQtWrapper, qtbase, qtquick1, qmltermwidget }:
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.0.0";
|
|
|
|
name = "cool-retro-term-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/Swordfish90/cool-retro-term.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "042ikarg6n0c09niwrm987pkzi8xjxxdrg2nqvk9pj7lgmmkkfn1";
|
|
|
|
fetchSubmodules = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
2015-10-14 15:44:10 +01:00
|
|
|
buildInputs = [ qtbase qtquick1 qmltermwidget ];
|
|
|
|
nativeBuildInputs = [ makeQtWrapper ];
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
configurePhase = "qmake PREFIX=$out";
|
|
|
|
|
|
|
|
installPhase = "make -j $NIX_BUILD_CORES INSTALL_ROOT=$out install";
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
mv $out/usr/share $out/share
|
|
|
|
mv $out/usr/bin $out/bin
|
|
|
|
rmdir $out/usr
|
|
|
|
|
2015-09-27 20:44:15 +01:00
|
|
|
wrapQtProgram $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.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/Swordifish90/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 ];
|
|
|
|
};
|
|
|
|
}
|