summary refs log tree commit diff
path: root/pkgs/tools/misc/dtach/default.nix
blob: 0367ab53835f0740b8a74f97f597c7dfcb0d6da1 (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
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "dtach-${version}";
  version = "0.9";

  src = fetchurl {
    url = "mirror://sourceforge/project/dtach/dtach/${version}/${name}.tar.gz";
    sha256 = "1wwj2hlngi8qn2pisvhyfxxs8gyqjlgrrv5lz91w8ly54dlzvs9j";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp dtach $out/bin/dtach
  '';

  meta = {
    homepage = http://dtach.sourceforge.net/;
    description = "A program that emulates the detach feature of screen";

    longDescription = ''
      dtach is a tiny program that emulates the detach feature of
      screen, allowing you to run a program in an environment that is
      protected from the controlling terminal and attach to it later.
      dtach does not keep track of the contents of the screen, and
      thus works best with programs that know how to redraw
      themselves.
    '';

    license = stdenv.lib.licenses.gpl2Plus;

    platforms = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.chaoflow ];
  };
}