python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / dtach / default.nix
blobf036ba9ea3e624b56774281e821c327f55d008f0
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "dtach";
5   version = "0.9";
7   src = fetchurl {
8     url = "mirror://sourceforge/project/dtach/dtach/${version}/${pname}-${version}.tar.gz";
9     sha256 = "1wwj2hlngi8qn2pisvhyfxxs8gyqjlgrrv5lz91w8ly54dlzvs9j";
10   };
12   installPhase = ''
13     mkdir -p $out/bin
14     cp dtach $out/bin/dtach
15   '';
17   meta = {
18     homepage = "http://dtach.sourceforge.net/";
19     description = "A program that emulates the detach feature of screen";
21     longDescription = ''
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
27       themselves.
28     '';
30     license = lib.licenses.gpl2Plus;
32     platforms = lib.platforms.unix;
33     maintainers = [ ];
34   };