1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://ibiblioPubLinux/utils/terminal/${pname}-${version}.tgz";
9 hash = "sha256-6xc5eshCuCIOsDh0r2DizKAeypGH0TRRotZ4itsvpVk=";
13 sed -e s@/usr/bin/ginstall@install@g -i Makefile
18 mkdir -p "$out/share/man/man8"
21 makeFlags = [ "prefix=$(out)" "manprefix=$(out)/share/" ];
24 description = "Tool to detach from controlling TTY and attach to another";
25 license = licenses.gpl2Only;
26 maintainers = with maintainers; [ raskin ];
27 platforms = platforms.linux;