summary refs log tree commit diff
path: root/pkgs/applications/misc/cool-retro-term/default.nix
diff options
context:
space:
mode:
authorSven Keidel <svenkeidel@googlemail.com>2015-01-30 22:48:41 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-01-31 19:23:45 +0100
commitb50cabf2d4c1175da48af4df3132b246aa1c8d12 (patch)
treee2453713327d5171866963e9e966802ba3fb6a52 /pkgs/applications/misc/cool-retro-term/default.nix
parent59d1d46088e7eea23012a966acde7a055c6955d0 (diff)
downloadnixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.tar
nixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.tar.gz
nixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.tar.bz2
nixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.tar.lz
nixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.tar.xz
nixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.tar.zst
nixpkgs-b50cabf2d4c1175da48af4df3132b246aa1c8d12.zip
cool-old-term: rename to cool-retro-term (close #6071)
The project has changed its name to cool-retro-term. The project also added a
dependency that is included as a submodule. I added this dependency as a
separate expression.
Diffstat (limited to 'pkgs/applications/misc/cool-retro-term/default.nix')
-rw-r--r--pkgs/applications/misc/cool-retro-term/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/applications/misc/cool-retro-term/default.nix b/pkgs/applications/misc/cool-retro-term/default.nix
new file mode 100644
index 00000000000..d955e5b7677
--- /dev/null
+++ b/pkgs/applications/misc/cool-retro-term/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchgit, makeWrapper, qt5, qmltermwidget }:
+
+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 = ''
+    sed -i -e '/qmltermwidget/d' cool-retro-term.pro 
+  '';
+
+  buildInputs = [ makeWrapper qt5 qmltermwidget ];
+
+  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
+
+    wrapProgram $out/bin/cool-retro-term \
+      --prefix QML2_IMPORT_PATH : "${qmltermwidget}/lib/qml/"
+  '';
+
+  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";
+    licenses = with stdenv.lib.licenses; [ gpl2 gpl3 ];
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ skeidel ];
+  };
+}