From badcbf43f5428a99880e6589983dc2e8fe038037 Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Thu, 23 Jun 2022 00:41:54 -0300 Subject: dterm: move to applications/terminal-emulators Also, use SRI hash and add a `longDescription`. --- .../terminal-emulators/dterm/default.nix | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 pkgs/applications/terminal-emulators/dterm/default.nix (limited to 'pkgs/applications/terminal-emulators') diff --git a/pkgs/applications/terminal-emulators/dterm/default.nix b/pkgs/applications/terminal-emulators/dterm/default.nix new file mode 100644 index 00000000000..69b1f67d629 --- /dev/null +++ b/pkgs/applications/terminal-emulators/dterm/default.nix @@ -0,0 +1,42 @@ +{ lib +, stdenv +, fetchurl +, readline +}: + +stdenv.mkDerivation rec { + pname = "dterm"; + version = "0.5"; + + src = fetchurl { + url = "http://www.knossos.net.nz/downloads/dterm-${version}.tgz"; + hash = "sha256-lFM7558e7JZeWYhtXwCjXLZ1xdsdiUGfJTu3LxQKvds="; + }; + + buildInputs = [ readline ]; + + postPatch = '' + substituteInPlace Makefile \ + --replace 'gcc' '${stdenv.cc.targetPrefix}cc' + ''; + + preInstall = "mkdir -p $out/bin"; + + installFlags = [ "BIN=$(out)/bin/" ]; + + meta = with lib; { + homepage = "http://www.knossos.net.nz/resources/free-software/dterm/"; + description = "A simple terminal program"; + longDescription = '' + dterm is a simple terminal emulator, which doesn’t actually emulate any + particular terminal. Mainly, it is designed for use with xterm and + friends, which already do a perfectly good emulation, and therefore don’t + need any special help; dterm simply provides a means by which keystrokes + are forwarded to the serial line, and data forwarded from the serial line + appears on the terminal. + ''; + license = licenses.gpl2Only; + maintainers = with maintainers; [ auchter ]; + platforms = platforms.unix; + }; +} -- cgit 1.4.1