1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/project/dtach/dtach/${version}/${pname}-${version}.tar.gz";
9 sha256 = "1wwj2hlngi8qn2pisvhyfxxs8gyqjlgrrv5lz91w8ly54dlzvs9j";
14 cp dtach $out/bin/dtach
18 homepage = "http://dtach.sourceforge.net/";
19 description = "A program that emulates the detach feature of screen";
22 dtach is a tiny program that emulates the detach feature of
23 screen, allowing you to run a program in an environment that is
24 protected from the controlling terminal and attach to it later.
25 dtach does not keep track of the contents of the screen, and
26 thus works best with programs that know how to redraw
30 license = lib.licenses.gpl2Plus;
32 platforms = lib.platforms.unix;