nixpkgs/pkgs/tools/misc/dtach/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

37 lines
1005 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "dtach";
version = "0.9";
src = fetchurl {
url = "mirror://sourceforge/project/dtach/dtach/${version}/${pname}-${version}.tar.gz";
sha256 = "1wwj2hlngi8qn2pisvhyfxxs8gyqjlgrrv5lz91w8ly54dlzvs9j";
};
installPhase = ''
mkdir -p $out/bin
cp dtach $out/bin/dtach
'';
meta = {
homepage = "https://dtach.sourceforge.net/";
description = "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 = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = [ ];
mainProgram = "dtach";
};
}