nixpkgs/pkgs/applications/misc/cool-retro-term/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

2018-01-14 17:47:57 +00:00
{ stdenv, fetchFromGitHub, qtbase, qtquick1, qmltermwidget,
2017-06-02 15:40:19 +00:00
qtquickcontrols, qtgraphicaleffects, qmake }:
stdenv.mkDerivation rec {
2018-01-14 17:47:57 +00:00
version = "1.0.1";
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";
};
patchPhase = ''
2015-03-24 15:31:27 +00:00
sed -i -e '/qmltermwidget/d' cool-retro-term.pro
'';
buildInputs = [ qtbase qtquick1 qmltermwidget qtquickcontrols qtgraphicaleffects ];
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ qmake ];
installFlags = [ "INSTALL_ROOT=$(out)" ];
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.
'';
homepage = https://github.com/Swordifish90/cool-retro-term;
2015-04-21 16:05:19 +00:00
license = with stdenv.lib.licenses; [ gpl2 gpl3 ];
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ skeidel ];
};
}