Add reptyr, tool to change controlling terminal of a process under Linux

This commit is contained in:
Michael Raskin 2012-10-04 09:17:09 +04:00
parent a84ad8010a
commit 0013b8faa5
3 changed files with 19 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,17 @@
{stdenv, fetchgit}:
stdenv.mkDerivation rec {
version = "0.4";
name = "reptyr-${version}";
src = fetchgit {
url = "https://github.com/nelhage/reptyr.git";
rev = "refs/tags/${name}";
sha256 = "2d2814c210e4bde6f9bcf3aa20477287d7e4a5aa7ee09110b37d2eaaf7e5ecae";
};
makeFlags = ["PREFIX=$(out)"];
meta = {
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.mit;
description = ''A Linux tool to change controlling pty of a process'';
};
}

View File

@ -1385,6 +1385,8 @@ let
replace = callPackage ../tools/text/replace { };
reptyr = callPackage ../os-specific/linux/reptyr {};
rdiff_backup = callPackage ../tools/backup/rdiff-backup { };
ripmime = callPackage ../tools/networking/ripmime {};