summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/dterm/default.nix
blob: 69b1f67d629a9750ac856da43c3eefd6ea6d5528 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
  };
}